@ajhenry/stack
Version:
A CLI to bootstrap dev environments lightning fast ⚡
16 lines (15 loc) • 510 B
TypeScript
import { Command } from "@oclif/command";
export default class File extends Command {
static description: string;
static flags: {
help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
overwrite: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
debug: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
};
static args: {
name: string;
description: string;
optional: boolean;
}[];
run(): Promise<void>;
}