1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-22 03:03:43 +00:00

Merge branch 'master' into soft-delete

This commit is contained in:
Chad Scharf
2020-04-06 19:09:56 -04:00
3 changed files with 42 additions and 4 deletions

View File

@@ -7,6 +7,7 @@ export abstract class TokenService {
getToken: () => Promise<string>;
setRefreshToken: (refreshToken: string) => Promise<any>;
getRefreshToken: () => Promise<string>;
toggleTokens: () => Promise<any>;
setTwoFactorToken: (token: string, email: string) => Promise<any>;
getTwoFactorToken: (email: string) => Promise<string>;
clearTwoFactorToken: (email: string) => Promise<any>;