UNPKG

543 BTypeScriptView Raw
1import { Command, flags as Flags } from '@heroku-cli/command';
2export default class Set extends Command {
3 static description: 'set new app buildpack, overwriting into list of buildpacks if necessary';
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 required: boolean;
12 description: string;
13 }[];
14 run(): Promise<void>;
15}