mirror of
https://github.com/bitwarden/browser
synced 2025-12-20 02:03:39 +00:00
* Use Memory Storage directly in Session Sync * Update apps/browser/src/decorators/session-sync-observable/browser-session.decorator.spec.ts Co-authored-by: Justin Baur <19896123+justindbaur@users.noreply.github.com> * Fix up test Co-authored-by: Justin Baur <19896123+justindbaur@users.noreply.github.com>
18 lines
870 B
TypeScript
18 lines
870 B
TypeScript
import { MemoryStorageOptions, StorageOptions } from "../models/domain/storage-options";
|
|
|
|
export abstract class AbstractStorageService {
|
|
abstract get<T>(key: string, options?: StorageOptions): Promise<T>;
|
|
abstract has(key: string, options?: StorageOptions): Promise<boolean>;
|
|
abstract save<T>(key: string, obj: T, options?: StorageOptions): Promise<void>;
|
|
abstract remove(key: string, options?: StorageOptions): Promise<void>;
|
|
}
|
|
|
|
export abstract class AbstractMemoryStorageService extends AbstractStorageService {
|
|
// Used to identify the service in the session sync decorator framework
|
|
static readonly TYPE = "MemoryStorageService";
|
|
readonly type = AbstractMemoryStorageService.TYPE;
|
|
|
|
abstract get<T>(key: string, options?: MemoryStorageOptions<T>): Promise<T>;
|
|
abstract getBypassCache<T>(key: string, options?: MemoryStorageOptions<T>): Promise<T>;
|
|
}
|