mirror of
https://github.com/bitwarden/jslib
synced 2026-01-08 19:43:15 +00:00
7 lines
191 B
TypeScript
7 lines
191 B
TypeScript
import { SecretVerificationRequest } from './secretVerificationRequest';
|
|
|
|
export class UpdateTwoFactorEmailRequest extends SecretVerificationRequest {
|
|
token: string;
|
|
email: string;
|
|
}
|