auth.provider API
    Preparing search index...

    Adapter primitive for MFA challenge providers.

    interface MfaProvider {
        kind: string;
        issue(userId: string, ctx: MfaIssueContext): Promise<MfaChallenge | null>;
        verify(challengeId: string, proof: unknown): Promise<MfaVerifyResult>;
    }
    Index

    Properties

    Methods

    Properties

    kind: string

    Methods