UNPKG

heroku

Version:

CLI to interact with Heroku

17 lines (16 loc) 606 B
import { Command } from '@heroku-cli/command'; export default class Info extends Command { static topic: string; static description: string; static example: string; static flags: { space: import("@oclif/core/lib/interfaces").OptionFlag<string, import("@oclif/core/lib/interfaces/parser").CustomOptions>; json: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>; }; static args: { name: import("@oclif/core/lib/interfaces/parser").Arg<string, Record<string, unknown>>; }; run(): Promise<void>; private displayVPNInfo; private render; }