Implements
  • Auth

Constructors

Properties

Constructors

Properties

passkey: {
    create: (
        options: PublicKeyCredentialCreationOptions,
    ) => Promise<null | Credential>;
    get: (
        options: PublicKeyCredentialRequestOptions,
    ) => Promise<null | Credential>;
    isSupported: () => boolean;
    verify: (
        credential: PublicKeyCredential,
        challenge: Uint8Array,
        publicKey: CryptoKey,
    ) => Promise<boolean>;
} = ...
password: {
    create: (options: PasswordCredentialInit) => Promise<null | Credential>;
} = ...