interface ICliProcessorHook {
    execute: (context: ICliExecutionContext) => Promise<void>;
    when: "after" | "before";
}

Properties

Properties

execute: (context: ICliExecutionContext) => Promise<void>
when: "after" | "before"