(updater: (s: WorkflowRunState) => WorkflowRunState)
| 329 | |
| 330 | export const useWorkflowRunStore = create<WorkflowRunStore>((set, get) => { |
| 331 | const setRunState = (updater: (s: WorkflowRunState) => WorkflowRunState): void => { |
| 332 | set((s) => ({ runState: updater(s.runState) })) |
| 333 | } |
| 334 | |
| 335 | const collectImageOutputs = (ctx: RunContext): Record<string, string> => { |
| 336 | const out: Record<string, string> = {} |
no outgoing calls
no test coverage detected