export interface StorageAdapter { get(key: string): Promise; set(key: string, value: string): Promise; remove(key: string): Promise; } //# sourceMappingURL=types.d.ts.map