UNPKG

@tsed/cli

Version:
12 lines (11 loc) 508 B
import { CliPlugins, type CommandProvider, PackageManagersModule, ProjectPackageJson, type PromptQuestion, type Task } from "@tsed/cli-core"; export interface AddCmdOptions extends CommandProvider { name: string; } export declare class AddCmd implements CommandProvider { protected cliPlugins: CliPlugins; protected packageJson: ProjectPackageJson; protected packageManagers: PackageManagersModule; $prompt(initialOptions: any): PromptQuestion[]; $exec(ctx: AddCmdOptions): Task[]; }