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