(executionId: string)
| 600 | mode: "model", |
| 601 | } as const); |
| 602 | const onExecutionPaused = (executionId: string): Effect.Effect<void> => |
| 603 | config.pausedExecutionHooks?.onExecutionPaused?.(executionId) ?? Effect.void; |
| 604 | const onResumeStarted = (executionId: string): Effect.Effect<void> => |
| 605 | config.pausedExecutionHooks?.onResumeStarted?.(executionId) ?? Effect.void; |
| 606 | const onResumeSettled = (executionId: string): Effect.Effect<void> => |
no outgoing calls
no test coverage detected