UNPKG

heroku

Version:

CLI to interact with Heroku

14 lines (13 loc) 577 B
import { Command } from '@heroku-cli/command'; export default class Scale extends Command { static strict: boolean; static description: string; static examples: string[]; static aliases: string[]; static hiddenAliases: string[]; static flags: { app: import("@oclif/core/lib/interfaces").OptionFlag<string, import("@oclif/core/lib/interfaces/parser").CustomOptions>; remote: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>; }; run(): Promise<void>; }