(blockId: string)
| 712 | } |
| 713 | |
| 714 | const onBlockStart = async (blockId: string): Promise<void> => { |
| 715 | if (!outputsByBlockId.has(blockId)) return |
| 716 | runningBlockIds.add(blockId) |
| 717 | schedulePartialWrite() |
| 718 | } |
| 719 | |
| 720 | const onBlockComplete = async (blockId: string, output: unknown): Promise<void> => { |
| 721 | const outputs = outputsByBlockId.get(blockId) |
nothing calls this directly
no test coverage detected