@nodearch/command
Version:
NodeArch Command Toolkit
15 lines • 597 B
TypeScript
import { AppContext } from '@nodearch/core';
import { CommandParser } from './command-parser.js';
import { CommandConfig } from './command.config.js';
import { ICommand } from '../index.js';
export declare class CommandService {
private readonly commandConfig;
private readonly commandParser;
private readonly appContext;
constructor(commandConfig: CommandConfig, commandParser: CommandParser, appContext: AppContext);
start(options?: {
commands?: ICommand[];
exclude?: (RegExp | string)[];
}): Promise<void>;
}
//# sourceMappingURL=command.service.d.ts.map