UNPKG

heroku

Version:

CLI to interact with Heroku

15 lines (14 loc) 654 B
import { Command } from '@heroku-cli/command'; export default class Rollback extends Command { static topic: string; static hiddenAliases: string[]; static description: string; static flags: { remote: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>; app: import("@oclif/core/lib/interfaces").OptionFlag<string, import("@oclif/core/lib/interfaces/parser").CustomOptions>; }; static args: { release: import("@oclif/core/lib/interfaces/parser").Arg<string | undefined, Record<string, unknown>>; }; run(): Promise<void>; }