/** Keeps a truncated log of the last 25 request URLs for debugging purposes. This could be merged with the stats plugin or expanded to log more than just URLs or even removed altogether in the future. Just keeping it in here for the moment to see if it’s useful for debugging certain types of issues. */ import type { NextHandler } from 'polka'; import type { KittenRequest, KittenResponse } from '../types/index.ts'; export default function (): (request: KittenRequest, response: KittenResponse, next: NextHandler) => void;