1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 01:33:33 +00:00

support for otpauth:// urls for totp codes

This commit is contained in:
Kyle Spearrin
2018-07-31 11:25:50 -04:00
parent 2045e7047a
commit 41ab22a82f
4 changed files with 108 additions and 39 deletions

View File

@@ -1,4 +1,5 @@
export abstract class TotpService {
getCode: (keyb32: string) => Promise<string>;
getCode: (key: string) => Promise<string>;
getTimeInterval: (key: string) => number;
isAutoCopyEnabled: () => Promise<boolean>;
}