Interface Auth
interface Auth {
passkey: {
create: (
options: PublicKeyCredentialCreationOptions,
) => Promise<null | Credential>;
get: (
options: PublicKeyCredentialRequestOptions,
) => Promise<null | Credential>;
isSupported: () => boolean;
};
}
passkey: {
create: (
options: PublicKeyCredentialCreationOptions,
) => Promise<null | Credential>;
get: (
options: PublicKeyCredentialRequestOptions,
) => Promise<null | Credential>;
isSupported: () => boolean;
};
}
Index
Properties
Properties
passkey
passkey: {
create: (
options: PublicKeyCredentialCreationOptions,
) => Promise<null | Credential>;
get: (
options: PublicKeyCredentialRequestOptions,
) => Promise<null | Credential>;
isSupported: () => boolean;
}
create: (
options: PublicKeyCredentialCreationOptions,
) => Promise<null | Credential>;
get: (
options: PublicKeyCredentialRequestOptions,
) => Promise<null | Credential>;
isSupported: () => boolean;
}