@titan-suite/cli
Version:
The complete smart contract development tool
15 lines (14 loc) • 465 B
TypeScript
import { Command, flags } from '@oclif/command';
export default class Migrate extends Command {
static description: string;
static examples: string[];
static args: {
name: string;
}[];
static flags: {
help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
privateKey: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
network: flags.IOptionFlag<string | undefined>;
};
run(): Promise<void>;
}