boil-cli-tool
Version:
CLI tool - boilerplate template manager and generator
15 lines (14 loc) • 413 B
TypeScript
import { Command, flags } from "@oclif/command";
export default class Create extends Command {
static description: string;
static flags: {
help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
args: flags.IOptionFlag<string | undefined>;
};
static args: {
name: string;
description: string;
}[];
static examples: string[];
run(): Promise<void>;
}