File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
packages/react-reconciler/src Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -19,13 +19,17 @@ import type {
1919 Wakeable ,
2020 Usable ,
2121} from 'shared/ReactTypes' ;
22- import type { SuspenseInstance } from './ReactFiberHostConfig' ;
2322import type { WorkTag } from './ReactWorkTags' ;
2423import type { TypeOfMode } from './ReactTypeOfMode' ;
2524import type { Flags } from './ReactFiberFlags' ;
2625import type { Lane , Lanes , LaneMap } from './ReactFiberLane.old' ;
2726import type { RootTag } from './ReactRootTags' ;
28- import type { TimeoutHandle , NoTimeout } from './ReactFiberHostConfig' ;
27+ import type {
28+ Container ,
29+ TimeoutHandle ,
30+ NoTimeout ,
31+ SuspenseInstance ,
32+ } from './ReactFiberHostConfig' ;
2933import type { Cache } from './ReactFiberCacheComponent.old' ;
3034// Doing this because there's a merge conflict because of the way sync-reconciler-fork
3135// is implemented
@@ -210,7 +214,7 @@ type BaseFiberRootProperties = {
210214 tag : RootTag ,
211215
212216 // Any additional information from the host associated with this root.
213- containerInfo : any ,
217+ containerInfo : Container ,
214218 // Used only by persistent updates.
215219 pendingChildren : any ,
216220 // The currently active root fiber. This is the mutable root of the tree.
You can’t perform that action at this time.
0 commit comments