@rsksmart/rif-storage-pinning
Version:
Application for providing your storage space to other to use in exchange of RIF Tokens
25 lines (24 loc) • 1.1 kB
TypeScript
import { flags } from '@oclif/command';
import { IConfig } from '@oclif/config';
import BaseCommand from '../utils';
import { OutputFlags } from '@oclif/parser';
export default class InitCommand extends BaseCommand {
static flags: {
network: flags.IOptionFlag<string | undefined>;
offerId: flags.IOptionFlag<any>;
keyType: flags.IOptionFlag<string>;
keySize: import("@oclif/parser/lib/flags").IOptionFlag<number>;
'override-db': 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[];
constructor(argv: string[], config: IConfig);
protected baseConfig(flags: OutputFlags<typeof InitCommand.flags>): void;
run(): Promise<void>;
}