UNPKG

heroku

Version:

CLI to interact with Heroku

15 lines (14 loc) 591 B
import { Command } from '@heroku-cli/command'; export default class ClientsCreate 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: { name: import("@oclif/core/lib/interfaces/parser").Arg<string, Record<string, unknown>>; redirect_uri: import("@oclif/core/lib/interfaces/parser").Arg<string, Record<string, unknown>>; }; run(): Promise<void>; }