UNPKG

forest-cli

Version:

The Lumberjacks' toolbelt is the Forest CLI which makes easy to manage your back office application directly from the terminal.

21 lines 1.09 kB
import type { Config } from '../../../interfaces/project-create-interface'; import type { ProjectCreateOptions } from '../../../services/projects/create/options'; import type { CommandOptions } from '../../../utils/option-parser'; import type { Config as OclifConfig } from '@oclif/core'; import AbstractProjectCreateCommand from '../../../abstract-project-create-command'; import Agents from '../../../utils/agents'; export default class NosqlCommand 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: {}; protected readonly agent = Agents.NodeJS; private readonly dumper; constructor(argv: string[], config: OclifConfig, plan?: any); protected dump(config: Config): Promise<void>; protected getCommandOptions(): Promise<ProjectCreateOptions>; } //# sourceMappingURL=nosql.d.ts.map