UNPKG

320 BTypeScriptView Raw
1import { Command as Base } from '@oclif/core';
2import { APIClient } from './api-client';
3export declare abstract class Command extends Base {
4 base: string;
5 _heroku: APIClient;
6 _legacyHerokuClient: any;
7 get heroku(): APIClient;
8 get legacyHerokuClient(): any;
9 get cli(): any;
10 get out(): any;
11}