x/oak/router.ts

A middleware framework for handling HTTP with Deno, Node, Bun and Cloudflare Workers 🐿️ 🦕
Very Popular
Latest
interface RouterAllowedMethodsOptions
import { type RouterAllowedMethodsOptions } from "https://dotland-vbqsvsrpfncg.deno-staging.dev/x/oak@v17.1.2/router.ts?p=prototype.%5BSymbol.iterator%5D&s=RouterAllowedMethodsOptions";

Options which can be specified when calling the .allowedMethods() method on a Router instance.

Properties

optional
throw: boolean
[src]

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
[src]

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

optional
notImplemented(): any
[src]

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