@heroku-cli/plugin-pipelines
Version:
@heroku-cli/plugin-pipelines ============================
12 lines (11 loc) • 364 B
TypeScript
import { Command, flags } from '@heroku-cli/command';
export default class PipelinesUpdate extends Command {
static description: string;
static examples: string[];
static flags: {
app: flags.IOptionFlag<string>;
remote: flags.IOptionFlag<string | undefined>;
stage: flags.IOptionFlag<string>;
};
run(): Promise<void>;
}