File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change 9
9
10
10
import warning from 'shared/warning' ;
11
11
12
+ import type { ReactEventResponder } from 'shared/ReactTypes' ;
13
+
12
14
export type Type = string ;
13
15
export type Props = Object ;
14
16
export type Container = { |
@@ -260,3 +262,19 @@ export function unhideTextInstance(
260
262
) : void {
261
263
textInstance .isHidden = false ;
262
264
}
265
+
266
+ export function handleEventComponent (
267
+ eventResponder : ReactEventResponder ,
268
+ rootContainerInstance : Container ,
269
+ internalInstanceHandle : Object ,
270
+ ) {
271
+ // TODO: add handleEventComponent implementation
272
+ }
273
+
274
+ export function handleEventTarget (
275
+ type : string ,
276
+ props : Props ,
277
+ internalInstanceHandle : Object ,
278
+ ) {
279
+ // TODO: add handleEventTarget implementation
280
+ }
You can’t perform that action at this time.
0 commit comments