UNPKG

unleash-client

Version:
8 lines 238 B
export interface StorageProvider<T> { set(key: string, data: T): Promise<void>; get(key: string): Promise<T | undefined>; } export interface StorageOptions { backupPath: string; } //# sourceMappingURL=storage-provider.d.ts.map