summaryrefslogtreecommitdiff
path: root/cli/bench/testdata/npm/hono/dist/middleware/pretty-json/index.d.ts
blob: 94736847e20c911b83313e8d91af480ded6d209c (plain)
1
2
3
4
5
6
7
import type { Context } from '../../context';
import type { Next } from '../../hono';
declare type prettyOptions = {
    space: number;
};
export declare const prettyJSON: (options?: prettyOptions) => (c: Context, next: Next) => Promise<void>;
export {};