Route type used to take control of how the route should resolve.

interface IResolverRoute<D = any> {
    data?: D;
    guards?: Guard<any, any>[];
    path: string;
    pathMatch?: PathMatch;
    resolve: CustomResolver;
}

Type Parameters

  • D = any

Hierarchy

  • IRouteBase<D>
    • IResolverRoute

Properties

data?: D
guards?: Guard<any, any>[]
path: string
pathMatch?: PathMatch
resolve: CustomResolver
MMNEPVFCICPMFPCPTTAAATR