Interface PublicKeyCredential
interface PublicKeyCredential {
authenticatorAttachment: string;
id: string;
rawId: ArrayBuffer;
response: AuthenticatorResponse;
type: string;
getClientExtensionResults(): AuthenticationExtensionsClientOutputs;
toJSON(): any;
}
authenticatorAttachment: string;
id: string;
rawId: ArrayBuffer;
response: AuthenticatorResponse;
type: string;
getClientExtensionResults(): AuthenticationExtensionsClientOutputs;
toJSON(): any;
}
Hierarchy
- Credential
- PublicKeyCredential (View Summary)
Index
Properties
Methods
Properties
Readonly
authenticatorAttachment
authenticatorAttachment: string
Readonly
id
id: string
Readonly
rawId
Readonly
response
Readonly
type
type: string
Methods
getClientExtensionResults
- getClientExtensionResults(): AuthenticationExtensionsClientOutputs
Returns AuthenticationExtensionsClientOutputs
Available only in secure contexts.
MDN Reference