Skip to main content
Latest
interface oak.RouterAllowedMethodsOptions
import { type oak } from "https://deno.land/x/create_react_app@v0.1.2/deps.ts";
const { RouterAllowedMethodsOptions } = oak;

Properties

optional
throw: boolean

When dealing with a non-implemented method or a method not allowed, throw an error instead of setting the status and header for the response.

Methods

optional
methodNotAllowed(): any

Use the value returned from this function instead of an HTTP error MethodNotAllowed.

optional
notImplemented(): any

Use the value returned from this function instead of an HTTP error NotImplemented.