refactor(run-engine): stop exporting the internal BlockedRun type

`BlockedRun` is only named inside types.ts, by CompleteResult. The repo's
knip gate rejects unused exports, so drop the export keyword rather than
add a knip.json exception — nothing outside this file needs the name yet.
This commit is contained in:
Dan Sutton
2026-08-21 16:10:58 +01:00
parent a913a5e58c
commit 7b04f86014
@@ -87,7 +87,7 @@ export type CompleteParams = {
};
/** One run blocked by the completed waitpoint, with the fields the caller's fan-out loop reads. */
export type BlockedRun = {
type BlockedRun = {
taskRunId: string;
spanIdToComplete: string | null;
createdAt: Date;