forest-cli
Version:
The Lumberjacks' toolbelt is the Forest CLI which makes easy to manage your back office application directly from the terminal.
18 lines • 893 B
TypeScript
import type { Config } from '../../interfaces/project-create-interface';
import type { CommandOptions } from '../../utils/option-parser';
import type { Config as OclifConfig } from '@oclif/core';
import AbstractProjectCreateCommand from '../../abstract-project-create-command';
export default class CreateCommand extends AbstractProjectCreateCommand {
protected static readonly options: CommandOptions;
/** @see https://oclif.io/docs/args */
static readonly args: {
applicationName: import("@oclif/core/lib/interfaces").Arg<string, Record<string, unknown>>;
};
/** @see https://oclif.io/docs/flags */
static readonly flags: {};
private readonly dumper;
protected readonly agent: any;
constructor(argv: string[], config: OclifConfig, plan?: any);
protected dump(config: Config, schema?: any): Promise<void>;
}
//# sourceMappingURL=create.d.ts.map