mattermost-mobile/ios/Mattermost/OnPasteEventManager.h
Elias Nahum ee2a25df84
Fix iOS crash when pasting large images and included other file types (#3424)
* Fix iOS crash when pasting large images and included other file types

* Rename pasteImages to pasteFiles and fix copying heic images

* remove comment

* Feedback review
2019-10-24 20:41:38 +03:00

20 lines
385 B
Objective-C

//
// PasteEventManager.h
// Mattermost
//
// Created by Tek Min Ewe on 05/08/2019.
// Copyright © 2019 Facebook. All rights reserved.
//
#import <React/RCTBridgeModule.h>
#import <React/RCTEventEmitter.h>
NS_ASSUME_NONNULL_BEGIN
@interface OnPasteEventManager : RCTEventEmitter<RCTBridgeModule>
+(void)pasteFiles:(NSArray<NSDictionary *> *)data;
@end
NS_ASSUME_NONNULL_END