mirror of
https://github.com/bitwarden/browser
synced 2025-12-18 17:23:37 +00:00
updates for 2fa auth services
This commit is contained in:
6
src/models/domain/authResult.ts
Normal file
6
src/models/domain/authResult.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
import { TwoFactorProviderType } from '../../enums/twoFactorProviderType';
|
||||
|
||||
export class AuthResult {
|
||||
twoFactor: boolean = false;
|
||||
twoFactorProviders: Map<TwoFactorProviderType, { [key: string]: string; }> = null;
|
||||
}
|
||||
@@ -1,4 +1,5 @@
|
||||
export { Attachment } from './attachment';
|
||||
export { AuthResult } from './authResult';
|
||||
export { Card } from './card';
|
||||
export { Cipher } from './cipher';
|
||||
export { CipherString } from './cipherString';
|
||||
|
||||
Reference in New Issue
Block a user