interface AttestationValue {
    authenticatorAttachment: null | string;
    id: string;
    rawId: string;
    response: { attestationObject: string; clientDataJSON: string };
    type: string;
}

Hierarchy

  • Omit<
        PublicKeyCredential,
        "rawId"
        | "response"
        | "getClientExtensionResults"
        | "toJSON",
    >
    • AttestationValue

Properties

authenticatorAttachment: null | string
id: string
rawId: string
response: { attestationObject: string; clientDataJSON: string }
type: string