summaryrefslogtreecommitdiff
path: root/cli/bench/testdata/npm/hono/dist/middleware/cache/index.d.ts
blob: c0390c41e4b643f81835cb3ba2e5053de15c1a7c (plain)
1
2
3
4
5
6
7
import type { Context } from '../../context';
import type { Next } from '../../hono';
export declare const cache: (options: {
    cacheName: string;
    wait?: boolean;
    cacheControl?: string;
}) => (c: Context, next: Next) => Promise<Response | undefined>;