summaryrefslogtreecommitdiff
path: root/cli/bench/testdata/npm/hono/dist/middleware/cors/index.d.ts
blob: f353df808f85cdb2d5a7caed28e8111b783e720e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import type { Context } from '../../context';
import type { Next } from '../../hono';
declare type CORSOptions = {
    origin: string;
    allowMethods?: string[];
    allowHeaders?: string[];
    maxAge?: number;
    credentials?: boolean;
    exposeHeaders?: string[];
};
export declare const cors: (options?: CORSOptions) => (c: Context, next: Next) => Promise<void>;
export {};