UNPKG

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