1 // Copyright © 2018 650 Industries. All rights reserved. 2 3 #import <Foundation/Foundation.h> 4 5 // Register a class implementing this protocol in EXModuleClasses 6 // of EXModuleRegistryProvider (macros defined in EXDefines.h should help you) 7 // to make the module available under any of `exportedInterfaces` 8 // via EXModuleRegistry. 9 10 @protocol EXInternalModule <NSObject> 11 12 - (instancetype)init; 13 + (const NSArray<Protocol *> *)exportedInterfaces; 14 15 @end 16