Files
metabuilder/hooks/use-kv-store.ts
2026-03-09 22:30:41 +00:00

10 lines
378 B
TypeScript

/**
* Legacy compatibility re-export for useKVStore.
* The actual implementation is in ./src/useKVStore.ts and uses
* the C++ DBAL REST API via fetch() instead of the TypeScript client.
*
* @deprecated Import from './src/useKVStore' or '@metabuilder/hooks' instead.
*/
export { useKVStore } from './src/useKVStore'
export type { UseKVStoreReturn } from './src/useKVStore'