1 // Copyright 2015-present 650 Industries. All rights reserved. 2 3 #import <UIKit/UIKit.h> 4 #import "EXFileSystem.h" 5 6 NS_ASSUME_NONNULL_BEGIN 7 8 @interface EXFileSystemManager : NSObject <EXFileSystemScopedModuleDelegate> 9 10 - (NSString *)bundleDirectoryForExperienceId:(NSString *)experienceId; 11 - (NSArray<NSString *> *)bundledAssetsForExperienceId:(NSString *)experienceId; 12 13 @end 14 15 NS_ASSUME_NONNULL_END 16 17