UNPKG

@julesl23/s5js

Version:

Enhanced TypeScript SDK for S5 decentralized storage with path-based API, media processing, and directory utilities

6 lines 235 B
export interface KeyValueStore { put(key: Uint8Array, value: Uint8Array): Promise<void>; get(key: Uint8Array): Promise<Uint8Array | undefined>; contains(key: Uint8Array): Promise<boolean>; } //# sourceMappingURL=kv.d.ts.map