bgipfs
Version:
BuidlGuidl IPFS CLI
14 lines (13 loc) • 494 B
TypeScript
import { BaseCommand } from '../../base-command.js';
export default class UploadCommand extends BaseCommand {
static args: {
path: import("@oclif/core/interfaces").Arg<string, Record<string, unknown>>;
};
static description: string;
static examples: string[];
static flags: {
config: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
};
run(): Promise<void>;
private handleResult;
}