mirror of
https://github.com/bitwarden/browser
synced 2025-12-20 02:03:39 +00:00
re-organize into "barrels". add utils service
This commit is contained in:
5
src/abstractions/storage.service.ts
Normal file
5
src/abstractions/storage.service.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
export interface StorageService {
|
||||
get<T>(key: string): Promise<T>;
|
||||
save(key: string, obj: any): Promise<any>;
|
||||
remove(key: string): Promise<any>;
|
||||
}
|
||||
Reference in New Issue
Block a user