Skip to main content
Module

x/oak/router.ts>RouterAllowedMethodsOptions

A middleware framework for handling HTTP with Deno, Node, Bun and Cloudflare Workers 🐿️ 🦕
Extremely Popular
Latest
interface RouterAllowedMethodsOptions
import { type RouterAllowedMethodsOptions } from "https://deno.land/x/oak@v16.0.0/router.ts";

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

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.