File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
packages/react-native-renderer/src
scripts/rollup/shims/react-native Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -210,6 +210,7 @@ export type ReactFabricType = {
210
210
element : Element < ElementType > ,
211
211
containerTag : number ,
212
212
callback : ?( ) = > void ,
213
+ concurrentRoot : ?boolean ,
213
214
) : ?ElementRef < ElementType > ,
214
215
unmountComponentAtNode ( containerTag : number ) : void ,
215
216
...
Original file line number Diff line number Diff line change 12
12
13
13
import { BatchedBridge } from 'react-native/Libraries/ReactPrivate/ReactNativePrivateInterface' ;
14
14
15
- // TODO @sema : Adjust types
16
- import type { ReactNativeType } from './ReactNativeTypes' ;
15
+ import type { ReactFabricType } from './ReactNativeTypes' ;
17
16
18
17
let ReactFabric ;
19
18
@@ -29,4 +28,4 @@ if (global.RN$Bridgeless) {
29
28
BatchedBridge . registerCallableModule ( 'ReactFabric' , ReactFabric ) ;
30
29
}
31
30
32
- module . exports = ( ReactFabric : ReactNativeType ) ;
31
+ module . exports = ( ReactFabric : ReactFabricType ) ;
You can’t perform that action at this time.
0 commit comments