1 package expo.modules.updates.statemachine
2 
3 /**
4 All the possible states the machine can take.
5  */
6 enum class UpdatesStateValue(val value: String) {
7   Idle("idle"),
8   Checking("checking"),
9   Downloading("downloading"),
10   Restarting("restarting")
11 }
12