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:
@@ -1,4 +1,4 @@
|
||||
export interface AppIdService {
|
||||
getAppId(): Promise<string>;
|
||||
getAnonymousAppId(): Promise<string>;
|
||||
export abstract class AppIdService {
|
||||
getAppId: () => Promise<string>;
|
||||
getAnonymousAppId: () => Promise<string>;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user