2018-04-10 16:36:47 -07:00
|
|
|
/**
|
2018-09-11 15:27:47 -07:00
|
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
2018-04-10 16:36:47 -07:00
|
|
|
*
|
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
2018-11-25 22:15:00 -08:00
|
|
|
#import <react/core/ReactPrimitives.h>
|
2018-04-10 16:36:47 -07:00
|
|
|
#import <React/RCTMountItemProtocol.h>
|
|
|
|
#import <React/RCTPrimitives.h>
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Deletes (returns to recycle pool) a component view.
|
|
|
|
*/
|
|
|
|
@interface RCTDeleteMountItem : NSObject <RCTMountItemProtocol>
|
|
|
|
|
2018-11-25 22:15:00 -08:00
|
|
|
- (instancetype)initWithComponentHandle:(facebook::react::ComponentHandle)componentHandle
|
|
|
|
tag:(ReactTag)tag;
|
2018-04-10 16:36:47 -07:00
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|