1 // Copyright 2015-present 650 Industries. All rights reserved.
2 
3 import Foundation
4 
5 // A protocol for determining if a given bridge module is a "DevExtension"
6 // DevExtensions are passed through to the dev-menu and dev-launcher JS runtimes
7 // This protocol has no fields on it as of yet but could be extended if additional functionality is needed in the future
8 
9 @objc
10 public protocol EXDevExtensionProtocol {}
11