1 package expo.modules.updates.statemachine
2 
3 /**
4 Protocol with a method for sending state change events to JS.
5 In production, this is implemented by the UpdatesController singleton.
6  */
7 interface UpdatesStateChangeEventSender {
8   // Method to send events
sendUpdateStateChangeEventToBridgenull9   fun sendUpdateStateChangeEventToBridge(eventType: UpdatesStateEventType, context: UpdatesStateContext)
10 }
11