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