@heroku-cli/plugin-pipelines
Version:
@heroku-cli/plugin-pipelines ============================
16 lines (15 loc) • 475 B
TypeScript
import { Command } from '@heroku-cli/command';
export default class PipelinesInfo extends Command {
static description: string;
static examples: string[];
static flags: {
json: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
'with-owners': import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
};
static args: {
name: string;
description: string;
required: boolean;
}[];
run(): Promise<void>;
}