UNPKG

@gapi/cli

Version:
13 lines (12 loc) 389 B
import { ExternalImporterConfig } from './ipfs/external-importer-config'; export interface IPFS_MODULE_MAP { hash: string; module: ExternalImporterConfig; } export declare class IpfsHashMapService { hashMap: IPFS_MODULE_MAP[]; writeHashMapToFile(): Promise<void>; readHashMap(): Promise<void>; find(hash: string): IPFS_MODULE_MAP; remove(hash: string): void; }