@nodearch/command
Version:
NodeArch Command Toolkit
10 lines • 426 B
TypeScript
import { IHook } from '@nodearch/core';
import { CommandConfig } from './command.config.js';
import { CommandService } from './command.service.js';
export declare class CommandHook implements IHook {
private readonly commandConfig;
private readonly commandService;
constructor(commandConfig: CommandConfig, commandService: CommandService);
onStart(): Promise<void>;
}
//# sourceMappingURL=command.hook.d.ts.map