1 | import { Command as Base } from '@oclif/core';
|
2 | import { ArgOutput, FlagOutput, Input, ParserOutput } from '@oclif/core/lib/interfaces/parser';
|
3 | import { APIClient } from './api-client';
|
4 | export declare abstract class Command extends Base {
|
5 | base: string;
|
6 | _heroku: APIClient;
|
7 | _legacyHerokuClient: any;
|
8 | allowArbitraryFlags: boolean;
|
9 | get heroku(): APIClient;
|
10 | get legacyHerokuClient(): any;
|
11 | get cli(): any;
|
12 | get out(): any;
|
13 | protected parse<F extends FlagOutput, B extends FlagOutput, A extends ArgOutput>(options?: Input<F, B, A>, argv?: string[]): Promise<ParserOutput<F, B, A>>;
|
14 | }
|