MandarineMvc.Routing.RoutingParams
import type { MandarineMvc } from "https://raw.githubusercontent.com/mandarineorg/mandarinets/master/mvc-framework/mandarine-mvc.ns.ts";
const { RoutingParams } = MandarineMvc.Routing;
Refers to the information of a param in a route. /:name <----- for example
interface RoutingParams {
relation?: {
controller: string;
methodName?: string;
};routeIndex?: number;
routeName?: string;
}