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

Properties

Properties

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