WebauthnRegistrationRequest
Source: lyda-shared/src/Models/WebauthnRegistrationRequest.ts
WebauthnRegistrationRequest
Type: interface
export interface WebauthnRegistrationRequest {
registration: {
user: {
id: string;
name: string;
displayName: string;
};
credential: {
id: string;
publicKey: string;
algorithm: string;
transports: string[];
};
authenticatorData: string;
clientData: string;
},
challenge: string;
name: string;
}
Properties
| Property | Type | Required | Description |
|---|---|---|---|
| challenge | string | Yes | - |
| name | string | Yes | - |