1 #import <Foundation/Foundation.h>
2 #import <React/RCTViewManager.h>
3 
4 NS_ASSUME_NONNULL_BEGIN
5 
6 @interface RCTOnPageScrollEvent : NSObject <RCTEvent>
7 
8 - (instancetype) initWithReactTag:(NSNumber *)reactTag
9                          position:(NSNumber *)position
10                            offset:(NSNumber *)offset;
11 
12 @end
13 
14 NS_ASSUME_NONNULL_END
15