mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-02-06 22:44:22 +08:00
15 lines
359 B
Objective-C
15 lines
359 B
Objective-C
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@class RCTBridge;
|
|
|
|
@interface RCTJavaScriptEventDispatcher : NSObject
|
|
|
|
- (instancetype)initWithBridge:(RCTBridge *)bridge;
|
|
- (void)sendDeviceEventWithArgs:(NSArray *)args;
|
|
- (void)sendEventWithArgs:(NSArray *)args;
|
|
- (void)sendTouchesWithArgs:(NSArray *)args;
|
|
|
|
@end
|