UNPKG

heroku

Version:

CLI to interact with Heroku

13 lines (12 loc) 578 B
import { Command } from '@heroku-cli/command'; export default class Enable extends Command { static description: 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>; }; static args: { feature: import("@oclif/core/lib/interfaces/parser").Arg<string, Record<string, unknown>>; }; run(): Promise<void>; }