mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 16:23:44 +00:00
convert services to abstractions
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
export abstract class AuthService {
|
||||
logIn: (email: string, masterPassword: string, twoFactorProvider?: number,
|
||||
twoFactorToken?: string, remember?: boolean) => any;
|
||||
logIn: (email: string, masterPassword: string, twoFactorProvider?: number, twoFactorToken?: string,
|
||||
remember?: boolean) => Promise<any>;
|
||||
logOut: (callback: Function) => void;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user