BREAKING CHANGE(core): Refactor to v3: introduce modular core/domain architecture, plugin system, observability and strict TypeScript configuration; remove legacy classes
This commit is contained in:
27
ts/domain/kv/index.ts
Normal file
27
ts/domain/kv/index.ts
Normal file
@@ -0,0 +1,27 @@
|
||||
/**
|
||||
* Key-Value Store Module
|
||||
*
|
||||
* Distributed caching with TTL support
|
||||
*/
|
||||
|
||||
// Main classes
|
||||
export { KVStore, createKVStore } from './kv-store.js';
|
||||
|
||||
// Types
|
||||
export type {
|
||||
KVOperationResult,
|
||||
KVSetOptions,
|
||||
KVGetOptions,
|
||||
KVDeleteOptions,
|
||||
KVScanOptions,
|
||||
KVScanResult,
|
||||
CacheEvictionPolicy,
|
||||
CacheStats,
|
||||
KVStoreConfig,
|
||||
KVStoreStats,
|
||||
KVDocument,
|
||||
CacheEntry,
|
||||
KVBatchGetResult,
|
||||
KVBatchSetResult,
|
||||
KVBatchDeleteResult,
|
||||
} from './types.js';
|
||||
Reference in New Issue
Block a user