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