1 #import <Foundation/Foundation.h> 2 #import "EXManagedAppSplashScreenConfiguration.h" 3 4 NS_ASSUME_NONNULL_BEGIN 5 6 /** 7 * Parses manifest and builds SplashScreenConfiguration. 8 */ 9 @interface EXManagedAppSplashScreenConfigurationBuilder : NSObject 10 11 + (EXManagedAppSplashScreenConfiguration *)parseManifest:(NSDictionary *)manifest; 12 13 @end 14 15 NS_ASSUME_NONNULL_END 16