@codingtools/cdt
Version:
CLI for Developers
15 lines (14 loc) • 402 B
TypeScript
import { Command, flags } from '@oclif/command';
export default class Run extends Command {
static description: string;
static flags: {
help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
string: flags.IOptionFlag<string | undefined>;
};
static args: {
name: string;
}[];
run(): Promise<void>;
private checkParameters;
private evalRun;
}