forest-cli
Version:
The Lumberjacks' toolbelt is the Forest CLI which makes easy to manage your back office application directly from the terminal.
19 lines • 720 B
TypeScript
import type { Config } from '@oclif/core';
import AbstractAuthenticatedCommand from '../../abstract-authenticated-command';
export default class GetCommand extends AbstractAuthenticatedCommand {
private env;
private projectRenderer;
static flags: {
format: import("@oclif/core/lib/interfaces").OptionFlag<string, import("@oclif/core/lib/interfaces").CustomOptions>;
};
static args: {
projectId: import("@oclif/core/lib/interfaces").Arg<number, {
max?: number;
min?: number;
}>;
};
static description: string;
constructor(argv: string[], config: Config, plan?: any);
runAuthenticated(): Promise<void>;
}
//# sourceMappingURL=get.d.ts.map