UNPKG

heroku

Version:

CLI to interact with Heroku

14 lines (13 loc) 483 B
import { Command } from '@heroku-cli/command'; export default class ClientsInfo extends Command { static description: string; static examples: string[]; static flags: { json: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>; shell: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>; }; static args: { id: import("@oclif/core/lib/interfaces/parser").Arg<string, Record<string, unknown>>; }; run(): Promise<void>; }