Skip to main content
Module

x/cors/types.ts>CorsOptions

Deno.js CORS middleware
Very Popular
Go to Latest
type alias CorsOptions
import { type CorsOptions } from "https://deno.land/x/cors@v1.0.0/types.ts";
definition: { allowedHeaders?: string | string[]; credentials?: boolean; exposedHeaders?: string | string[]; maxAge?: number; methods?: string | string[]; optionsSuccessStatus?: number; origin?:
| boolean
| string
| RegExp
| (string | RegExp)[]
| OriginDelegate
; preflightContinue?: boolean; }