UNPKG

452 BTypeScriptView Raw
1import { Command, flags as Flags } from '@heroku-cli/command';
2export default class Remove extends Command {
3 static description: string;
4 static flags: {
5 app: Flags.IOptionFlag<string>;
6 remote: Flags.IOptionFlag<string | undefined>;
7 index: import("@oclif/parser/lib/flags").IOptionFlag<number | undefined>;
8 };
9 static args: {
10 name: string;
11 description: string;
12 }[];
13 run(): Promise<void>;
14}