* 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
20 lines
385 B
Objective-C
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
|