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

MapRoutePropertiesFunction

Function provided by the framework-aware layers to set any framework-specific properties from framework-agnostic properties

interface MapRoutePropertiesFunction {
(route: AgnosticRouteObject): {
hasErrorBoundary: boolean;
}
& Record<string, any>
;
}

§Call Signatures

§
(route: AgnosticRouteObject): {
hasErrorBoundary: boolean;
}
& Record<string, any>
[src]