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

AgnosticNonIndexRouteObject

Non-index routes may have children, but cannot have index

type AgnosticNonIndexRouteObject = AgnosticBaseRouteObject & {
children?: AgnosticRouteObject[];
index?: false;
}
;

§Type

§
AgnosticBaseRouteObject & {
children?: AgnosticRouteObject[];
index?: false;
}
[src]