heroku
Version:
CLI to interact with Heroku
10 lines (9 loc) • 324 B
TypeScript
import { Command } from '@heroku-cli/command';
export default class Keys extends Command {
static description: string;
static flags: {
json: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
long: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
};
run(): Promise<void>;
}