UNPKG

heroku

Version:

CLI to interact with Heroku

14 lines (13 loc) 752 B
import { Command } from '@heroku-cli/command'; export default class Search extends Command { static description: string; static flags: { namespace: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>; name: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>; description: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>; }; static args: { term: import("@oclif/core/lib/interfaces/parser").Arg<string | undefined, Record<string, unknown>>; }; run(): Promise<void>; }