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

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

§Properties

§
relation?: {
controller: string;
methodName?: string;
}
[src]
§
routeIndex?: number
[src]
§
routeName?: string
[src]