MCPcopy
hub / github.com/Tencent/omi / Component

Interface Component

packages/reactive-signal/src/reactivity.ts:7–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5let pendingSubscribers: Set<Subscriber> = new Set();
6
7export interface Component {
8 queuedUpdate: () => void
9 [key: string]: any
10 _tempActiveUpdateFnName?: string
11}
12
13let activeComponent: Component | null = null
14

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected