/** * Might have implementations like RAM, Redis, Memcached, * */ export interface KeyValueAdapter { get(key: string, collection?: string): Promise; listByPrefix(prefix: string, limit: number, collection?: string): Promise[]>; set(key: string, value: string, expiresInSeconds?: number, collection?: string): Promise; delete(key: string, collection?: string): Promise; } //# sourceMappingURL=KeyValueAdapter.d.ts.map