MCPcopy Create free account
hub / github.com/effect-app/libs / unregisterWait

Function unregisterWait

packages/vue/src/commander.ts:2507–2515  ·  view source on GitHub ↗
(id: string)

Source from the content-addressed store, hash-verified

2505 waitState.value[id] = waitState.value[id] ? waitState.value[id] + 1 : 1
2506}
2507const unregisterWait = (id: string) => {
2508 // console.debug("unregister wait", id)
2509 if (waitState.value[id]) {
2510 waitState.value[id] = waitState.value[id] - 1
2511 if (waitState.value[id] <= 0) {
2512 delete waitState.value[id]
2513 }
2514 }
2515}
2516
2517const getStateValues = <
2518 const Id extends string,

Callers 1

CommanderImplClass · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…