react-native/React/Fabric/Mounting/MountItems/RCTMountItemProtocol.h

24 lines
476 B
Objective-C

/**
* Copyright (c) 2015-present, Facebook, Inc.
*
* 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>
NS_ASSUME_NONNULL_BEGIN
@class RCTComponentViewRegistry;
/**
* Granular representation of any change in a user interface.
*/
@protocol RCTMountItemProtocol <NSObject>
- (void)executeWithRegistry:(RCTComponentViewRegistry *)registry;
@end
NS_ASSUME_NONNULL_END