1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 08:43:33 +00:00

Change AppIdService to Use Storage Directly (#10835)

This commit is contained in:
Justin Baur
2024-09-05 14:44:19 -04:00
committed by GitHub
parent f58138a51d
commit 3bbc2cc691
7 changed files with 65 additions and 92 deletions

View File

@@ -1,8 +1,4 @@
import { Observable } from "rxjs";
export abstract class AppIdService {
abstract appId$: Observable<string>;
abstract anonymousAppId$: Observable<string>;
abstract getAppId(): Promise<string>;
abstract getAnonymousAppId(): Promise<string>;
}