UNPKG

heroku

Version:

CLI to interact with Heroku

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