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

MandarineMvc.Routing.RoutingAnnotationContext

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

const { RoutingAnnotationContext } = MandarineMvc.Routing;

Contains the metadata information of a route. Like its controller and the method that should be executed.

interface RoutingAnnotationContext {
className?: string;
methodName: string;
methodType: HttpMethods;
options: RoutingOptions;
route: string;
}

§Properties

§
className?: string
[src]
§
methodName: string
[src]
§
methodType: HttpMethods
[src]
§
route: string
[src]