UNPKG

405 BTypeScriptView Raw
1import { Command, flags } from '@heroku-cli/command';
2export default class CiReRun extends Command {
3 static description: string;
4 static examples: string[];
5 static flags: {
6 app: flags.IOptionFlag<string | undefined>;
7 pipeline: flags.IOptionFlag<string | undefined>;
8 };
9 static args: {
10 name: string;
11 required: boolean;
12 }[];
13 run(): Promise<void>;
14}