CoreEffects: {
    EventListenerEffectFactory: typeof EventListenerEffectFactory;
    StateEffectFactory: typeof StateEffectFactory;
    StoreEffectFactory: typeof CreateStoreEffectFactory;
}

The core effects that the player needs to function.

The state effect is concerned with reacting to state changes for a given state atom.

The store effect is concerned with tracking the state atoms across threads

The event listener effect is what allows us to react to DOM element events.

Type declaration

Generated using TypeDoc