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;
}