Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

MandarineMvc.Routing.RoutingOptions

import type { MandarineMvc } from "https://raw.githubusercontent.com/mandarineorg/mandarinets/master/mvc-framework/mandarine-mvc.ns.ts"; 

const { RoutingOptions } = MandarineMvc.Routing;

Refers to the possible configurations a route can have.

interface RoutingOptions {
[key: string]: any;
guards?: Array<Function | GuardTarget>;
responseStatus?: HttpStatusCode;
}

§Index Signatures

§
[key: string]: any

§Properties

§
guards?: Array<Function | GuardTarget>
[src]
§
responseStatus?: HttpStatusCode
[src]