Skip to content

Commit

Permalink
Refactor: merge duplicate imports (#25364)
Browse files Browse the repository at this point in the history
  • Loading branch information
jerry-lllman committed Sep 30, 2022
1 parent 3517bd9 commit 31400ce
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions packages/react-reconciler/src/ReactInternalTypes.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,17 @@ import type {
Wakeable,
Usable,
} from 'shared/ReactTypes';
import type {SuspenseInstance} from './ReactFiberHostConfig';
import type {WorkTag} from './ReactWorkTags';
import type {TypeOfMode} from './ReactTypeOfMode';
import type {Flags} from './ReactFiberFlags';
import type {Lane, Lanes, LaneMap} from './ReactFiberLane.old';
import type {RootTag} from './ReactRootTags';
import type {TimeoutHandle, NoTimeout} from './ReactFiberHostConfig';
import type {
Container,
TimeoutHandle,
NoTimeout,
SuspenseInstance,
} from './ReactFiberHostConfig';
import type {Cache} from './ReactFiberCacheComponent.old';
// Doing this because there's a merge conflict because of the way sync-reconciler-fork
// is implemented
Expand Down Expand Up @@ -210,7 +214,7 @@ type BaseFiberRootProperties = {
tag: RootTag,

// Any additional information from the host associated with this root.
containerInfo: any,
containerInfo: Container,
// Used only by persistent updates.
pendingChildren: any,
// The currently active root fiber. This is the mutable root of the tree.
Expand Down

0 comments on commit 31400ce

Please sign in to comment.