1 package expo.interfaces.devmenu
2 
3 import android.os.Bundle
4 import com.facebook.react.ReactInstanceManager
5 
6 interface DevMenuDelegateInterface {
7   /**
8    * Returns a `Bundle` with the most important information about the current app.
9    */
appInfonull10   fun appInfo(): Bundle?
11 
12   /**
13    * Returns a `ReactInstanceManager` ot the currently shown app. It is a context of what the dev menu displays.
14    */
15   fun reactInstanceManager(): ReactInstanceManager
16 
17   fun supportsDevelopment(): Boolean {
18     return true
19   }
20 }
21