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

LazyRouteFunction

lazy() function to load a route definition, which can add non-matching related properties to a route

interface LazyRouteFunction <R extends AgnosticRouteObject> {
(): Promise<Omit<R, ImmutableRouteKey>>;
}

§Type Parameters

§Call Signatures

§
(): Promise<Omit<R, ImmutableRouteKey>>
[src]