Skip to content

Commit b2d56a9

Browse files
committed
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.
1 parent bf1c63b commit b2d56a9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • internal-packages/run-engine/src/engine/waitpointCoordinator

internal-packages/run-engine/src/engine/waitpointCoordinator/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export type CompleteParams = {
8787
};
8888

8989
/** One run blocked by the completed waitpoint, with the fields the caller's fan-out loop reads. */
90-
export type BlockedRun = {
90+
type BlockedRun = {
9191
taskRunId: string;
9292
spanIdToComplete: string | null;
9393
createdAt: Date;

0 commit comments

Comments
 (0)