Structs§
- UiEvent
- An interaction event sent from Bevy back into JS, where the reconciler dispatches it to the matching React handler.
Enums§
- Outbound
- Everything that flows Bevy -> JS over the single outbound channel. Internally
tagged (
t) soserde_v8produces a plain JS object the JS event loop canswitchon. Each variant serializes to a map, as internal tagging requires. - Response
Result - The outcome of a React -> Bevy request. Internally tagged (
status) so JS readsresult.status === "ok". The error is a message, surfaced to JS as a rejected promise — the typed success value is the only thing in the schema.