1 // Copyright 2015-present 650 Industries. All rights reserved.
2 
3 @objc(DevMenuModule)
4 open class DevMenuModule: NSObject, RCTBridgeModule {
5   public static func moduleName() -> String! {
6     return "ExpoDevMenu"
7   }
8 
9   public static func requiresMainQueueSetup() -> Bool {
10     return true
11   }
12 
13   // MARK: JavaScript API
14 
15   @objc
16   func openMenu() {
17     DevMenuManager.shared.openMenu()
18   }
19 }
20