mirror of
https://github.com/bitwarden/browser
synced 2025-12-21 10:43:35 +00:00
8 lines
219 B
TypeScript
8 lines
219 B
TypeScript
import { PasswordVerificationRequest } from './passwordVerificationRequest';
|
|
|
|
export class UpdateTwoFactorU2fRequest extends PasswordVerificationRequest {
|
|
deviceResponse: string;
|
|
name: string;
|
|
id: number;
|
|
}
|