mirror of
https://github.com/bitwarden/browser
synced 2025-12-13 23:03:32 +00:00
Split jslib into multiple modules (#363)
* Split jslib into multiple modules
This commit is contained in:
5
common/src/abstractions/storage.service.ts
Normal file
5
common/src/abstractions/storage.service.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
export abstract class 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