iwa-cli
Version:
An ImmutableWebApp CLI using oclif and cosmiconfig
15 lines (14 loc) • 418 B
TypeScript
import { Command } from '@oclif/command';
declare class RemoveCommand extends Command {
static aliases: string[];
static description: string;
static flags: {
version: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
};
static args: {
name: string;
}[];
run(): Promise<void>;
}
export = RemoveCommand;