hades-cli
Version:
Hades CLI developer tool
21 lines (20 loc) • 551 B
TypeScript
import { Command } from '@oclif/command';
export default class Delete extends Command {
static description: string;
static flags: {
help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
};
static args: ({
name: string;
required: boolean;
description: string;
options: string[];
} | {
name: string;
required: boolean;
description: string;
options?: undefined;
})[];
run(): Promise<void>;
promptForDelete(elementName: string): Promise<any>;
}