mirror of
https://github.com/bitwarden/browser
synced 2025-12-23 03:33:54 +00:00
7 lines
203 B
TypeScript
7 lines
203 B
TypeScript
import { PasswordVerificationRequest } from './passwordVerificationRequest';
|
|
|
|
export class EmailTokenRequest extends PasswordVerificationRequest {
|
|
newEmail: string;
|
|
masterPasswordHash: string;
|
|
}
|