mirror of
https://github.com/bitwarden/jslib
synced 2025-12-22 11:13:17 +00:00
8 lines
231 B
TypeScript
8 lines
231 B
TypeScript
import { SecretVerificationRequest } from './secretVerificationRequest';
|
|
|
|
export class UpdateTwoFactorWebAuthnRequest extends SecretVerificationRequest {
|
|
deviceResponse: PublicKeyCredential;
|
|
name: string;
|
|
id: number;
|
|
}
|