1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 17:53:39 +00:00

convert appid to abstract class

This commit is contained in:
Kyle Spearrin
2018-04-04 08:22:18 -04:00
parent 167558168c
commit 00bb0fdbdf
2 changed files with 5 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
export interface AppIdService {
getAppId(): Promise<string>;
getAnonymousAppId(): Promise<string>;
export abstract class AppIdService {
getAppId: () => Promise<string>;
getAnonymousAppId: () => Promise<string>;
}