Gets the current derived state value
Observable stream of state values
Subscribes to state changes with optional callback
Optional
onStoreChanged: () => voidCalled whenever relevant state changes occur
Unsubscribe function to clean up the subscription
Represents a reactive state source that provides synchronized access to store data
Remarks
Designed to work with React's useSyncExternalStore hook. Provides three ways to access data:
getCurrent()
for synchronous current value accesssubscribe()
for imperative change notificationsobservable
for reactive stream access