Skip to main content

Type Alias: HookProgressEvent

HookProgressEvent = { command: string; hookId: string; type: "hook-start"; } | { exitCode: number; hookId: string; success: boolean; type: "hook-done"; }

Defined in: packages/core/src/application/use-cases/run-step-hooks.ts:18

Progress event emitted during hook execution.