UNPKG

nucypher-experimental-taco-storage

Version:

TypeScript SDK for encrypted data storage with TACo (Threshold Access Control), supporting multiple storage providers including IPFS and SQLite

11 lines 500 B
/** * Storage adapters for TACo Storage SDK */ export { BaseStorageAdapter } from './base'; export type { IStorageAdapter } from './base'; export { BaseIPFSAdapter, KuboAdapter, HeliaAdapter, IPFSAdapter } from './ipfs/index'; export type { KuboAdapterConfig, HeliaAdapterConfig, IPFSAdapterConfig } from './ipfs/index'; export { SQLiteAdapter } from './sqlite'; export type { SQLiteAdapterConfig } from './sqlite'; export type { AdapterConfig } from '../types'; //# sourceMappingURL=index.d.ts.map