Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/endofunctor/components/http/src/cors/types.ts>CORSOptions

🌍 Vixeny: A runtime-agnostic, performance-centric library championing functional purity for modern web development.
Go to Latest
type alias CORSOptions
import { type CORSOptions } from "https://deno.land/x/endofunctor@v0.0.945/components/http/src/cors/types.ts";
definition: { allowOrigins?: string | string[]; allowMethods?: string | RequestMethod | RequestMethod[]; exposeHeaders?: string | string[]; maxAge?: number; allowCredentials?: boolean; allowHeaders?: string | string[]; appendHeaders?: boolean; }