MCPcopy
hub / github.com/lightningpixel/modly / setRunState

Function setRunState

src/areas/workflows/workflowRunStore.ts:331–333  ·  view source on GitHub ↗
(updater: (s: WorkflowRunState) => WorkflowRunState)

Source from the content-addressed store, hash-verified

329
330export 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> = {}

Callers 1

executeExtensionNodeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected