@umbraco-cms/backoffice

    Interface IResolverRoute<D>

    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;
        unique?: string | symbol;
    }

    Type Parameters

    • D = any

    Hierarchy

    • IRouteBase<D>
      • IResolverRoute
    Index

    Properties

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