Skip to content

Commit 31429ac

Browse files
committed
Refactor: merge duplicate imports
1 parent 3517bd9 commit 31429ac

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

packages/react-reconciler/src/ReactInternalTypes.js

+7-3
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,17 @@ import type {
1919
Wakeable,
2020
Usable,
2121
} from 'shared/ReactTypes';
22-
import type {SuspenseInstance} from './ReactFiberHostConfig';
2322
import type {WorkTag} from './ReactWorkTags';
2423
import type {TypeOfMode} from './ReactTypeOfMode';
2524
import type {Flags} from './ReactFiberFlags';
2625
import type {Lane, Lanes, LaneMap} from './ReactFiberLane.old';
2726
import 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';
2933
import 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.

0 commit comments

Comments
 (0)