Backstage
    Preparing search index...

    Interface ProxyAuthenticator<TContext, TResult, TProviderInfo>

    interface ProxyAuthenticator<TContext, TResult, TProviderInfo = undefined> {
        defaultProfileTransform: ProfileTransform<TResult>;
        authenticate(
            options: { req: Request },
            ctx: TContext,
        ): Promise<{ providerInfo?: TProviderInfo; result: TResult }>;
        initialize(ctx: { config: Config }): TContext;
    }

    Type Parameters

    • TContext
    • TResult
    • TProviderInfo = undefined
    Index

    Properties

    defaultProfileTransform: ProfileTransform<TResult>

    Methods