mirror of
https://github.com/bitwarden/browser
synced 2025-12-20 18:23:31 +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;
|
|
}
|