{"version":3,"file":"StorageAdapter.cjs","sources":["../../../src/storage/StorageAdapter.ts"],"sourcesContent":["import type { StorageAdapter } from '../types'\n\nexport abstract class BaseStorageAdapter implements StorageAdapter {\n  abstract get(key: string): Promise<string | null>\n  abstract set(key: string, value: string): Promise<void>\n  abstract delete(key: string): Promise<void>\n  abstract keys(): Promise<Array<string>>\n  abstract clear(): Promise<void>\n}\n\nexport { type StorageAdapter }\n"],"names":[],"mappings":";;AAEO,MAAe,mBAA6C;AAMnE;;"}