ipfs-repo
Version:
IPFS Repo implementation
16 lines • 685 B
TypeScript
/**
* @typedef {import('interface-datastore').Query} Query
* @typedef {import('interface-datastore').Datastore} Datastore
* @typedef {import('interface-datastore').Options} DatastoreOptions
* @typedef {import('interface-blockstore').Blockstore} Blockstore
*/
/**
* @param {Blockstore} store
* @returns {Blockstore}
*/
export function createIdStore(store: Blockstore): Blockstore;
export type Query = import('interface-datastore').Query;
export type Datastore = import('interface-datastore').Datastore;
export type DatastoreOptions = import('interface-datastore').Options;
export type Blockstore = import('interface-blockstore').Blockstore;
//# sourceMappingURL=idstore.d.ts.map