auth.provider API
    Preparing search index...

    Interface GrantHandlerResolver

    Read-only projection of the boot planner's grants collector, exposed to route factories that dispatch by grant_type at request time. Per A2-α §6.5 + Amendment 3.

    The boot planner instantiates this resolver during applyContributions (Phase 4 / A2-β §5.4) and freezes the underlying registry; the resolver exposes only get and entries, no write surface.

    interface GrantHandlerResolver {
        entries: () => IterableIterator<readonly [string, GrantHandler]>;
        get: (grantType: string) => GrantHandler | undefined;
    }
    Index

    Properties

    Properties

    entries: () => IterableIterator<readonly [string, GrantHandler]>
    get: (grantType: string) => GrantHandler | undefined