UNPKG

@heroku-cli/plugin-pipelines

Version:

@heroku-cli/plugin-pipelines ============================

17 lines (16 loc) 479 B
import { Command, flags } from '@heroku-cli/command'; export default class PipelinesAdd extends Command { static description: string; static examples: string[]; static flags: { app: flags.IOptionFlag<string>; remote: flags.IOptionFlag<string | undefined>; stage: flags.IOptionFlag<string | undefined>; }; static args: { name: string; description: string; required: boolean; }[]; run(): Promise<void>; }