(
message: string,
details: Record<string, unknown> = {},
)
| 128 | windowId: string; |
| 129 | tree: unknown; |
| 130 | } |
| 131 | | { |
| 132 | kind: "patches"; |
| 133 | windowId: string; |
| 134 | patches: Array<{ nodeId: string; node: unknown }>; |
| 135 | }; |
| 136 | |
| 137 | type NativeEffectUpdate = |
| 138 | | { |
| 139 | kind: "background"; |
| 140 | effect: CompiledEffectHandle | null; |
| 141 | } |
no outgoing calls
no test coverage detected