UNPKG

@rsksmart/rif-storage-pinning

Version:

Application for providing your storage space to other to use in exchange of RIF Tokens

19 lines (18 loc) 738 B
import { flags } from '@oclif/command'; import BaseCommand from '../utils'; export default class CleanupCommand extends BaseCommand { static flags: { unpin: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>; db: flags.IOptionFlag<string | undefined>; config: flags.IOptionFlag<string | undefined>; log: flags.IOptionFlag<string>; skipPrompt: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>; 'log-filter': flags.IOptionFlag<string | undefined>; 'log-path': flags.IOptionFlag<string | undefined>; }; static description: string; static examples: string[]; purgeDb(path: string): Promise<void>; private unpinAgreements; run(): Promise<void>; }