auth.provider API
    Preparing search index...

    Interface RouteOrderTargetMissingDetails

    Per A2-β §6.1.

    interface RouteOrderTargetMissingDetails {
        direction: "before" | "after";
        id: string;
        reason: "route-order-target-missing";
        referencedBy: string | null;
        referencedByMountPath?: string;
    }
    Index

    Properties

    direction: "before" | "after"
    id: string

    The referenced id that was not found.

    reason: "route-order-target-missing"
    referencedBy: string | null

    RouteContribution.id of the referencing route, or null when the referencing route has no id of its own.

    referencedByMountPath?: string

    Filled when referencedBy is null — the referencing route's mountPath.