@gapi/cli
Version:
Gapi command line interface
13 lines (12 loc) • 389 B
TypeScript
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;
}