1 // Copyright © 2018 650 Industries. All rights reserved.
2 
3 #import <Foundation/Foundation.h>
4 #import <UIKit/UIKit.h>
5 
6 NS_ASSUME_NONNULL_BEGIN
7 
8 /**
9  The legacy wrapper is still used to forward app delegate calls to singleton modules.
10  See `EXAppDelegatesLoader.m` which registers this class as a subscriber of `ExpoAppDelegate`.
11  */
12 @interface EXLegacyAppDelegateWrapper : UIResponder <UIApplicationDelegate>
13 
14 @end
15 
16 NS_ASSUME_NONNULL_END
17