heroku
Version:
CLI to interact with Heroku
15 lines (14 loc) • 584 B
TypeScript
import { Command } from '@heroku-cli/command';
export default class Hosts extends Command {
static topic: string;
static hidden: boolean;
static description: string;
static flags: {
space: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
json: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
};
static args: {
space: import("@oclif/core/lib/interfaces/parser").Arg<string | undefined, Record<string, unknown>>;
};
run(): Promise<void>;
}