mirror of
https://github.com/bitwarden/jslib
synced 2025-12-30 07:03:21 +00:00
7 lines
203 B
TypeScript
7 lines
203 B
TypeScript
import { PasswordVerificationRequest } from './passwordVerificationRequest';
|
|
|
|
export class UpdateTwoFactorAuthenticatorRequest extends PasswordVerificationRequest {
|
|
token: string;
|
|
key: string;
|
|
}
|