deno.land / x / deno@v1.28.2 / cli / bench / testdata / npm / hono / dist / middleware / cors / index.d.ts
12345678910111213import 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 {};
Version Info