* Upgrade to RN 0.48.1 * Update deps to be exact * Fix tests * Remove unneeded code from setup and add socketcluster dep * Fix drawer pan issue * Fix bridge issues on iOS * Upgrade to RN 0.48.3 * Search to use RN SectionList
16 lines
294 B
Objective-C
16 lines
294 B
Objective-C
//
|
|
// MattermostManaged.h
|
|
// Mattermost
|
|
//
|
|
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
//
|
|
|
|
#import <React/RCTBridgeModule.h>
|
|
|
|
|
|
@interface MattermostManaged : NSObject <RCTBridgeModule>
|
|
|
|
+ (void)sendConfigChangedEvent;
|
|
|
|
@end
|