interface AssertionValue {
    authenticatorAttachment: null | string;
    id: string;
    rawId: string;
    response: {
        authenticatorData: string;
        clientDataJSON: string;
        signature: string;
        userHandle: null | string;
    };
    type: string;
}

Hierarchy

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

Properties

authenticatorAttachment: null | string
id: string
rawId: string
response: {
    authenticatorData: string;
    clientDataJSON: string;
    signature: string;
    userHandle: null | string;
}
type: string