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