mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 09:43:23 +00:00
7 lines
192 B
TypeScript
7 lines
192 B
TypeScript
import { SecretVerificationRequest } from "./secretVerificationRequest";
|
|
|
|
export class TwoFactorEmailRequest extends SecretVerificationRequest {
|
|
email: string;
|
|
deviceIdentifier: string;
|
|
}
|