Delete unreferenced type (#21343)

Had already deleted all the uses but didn't remove the type itself.
This commit is contained in:
Andrew Clark
2021-04-23 15:41:53 -07:00
committed by GitHub
parent 9cd52b27fe
commit 0f5ebf366e
2 changed files with 0 additions and 38 deletions
@@ -11,25 +11,6 @@ import type {FiberRoot} from './ReactInternalTypes';
// TODO: Ideally these types would be opaque but that doesn't work well with
// our reconciler fork infra, since these leak into non-reconciler packages.
export type LanePriority =
| 0
| 1
| 2
| 3
| 4
| 5
| 6
| 7
| 8
| 9
| 10
| 11
| 12
| 13
| 14
| 15
| 16
| 17;
export type Lanes = number;
export type Lane = number;
@@ -11,25 +11,6 @@ import type {FiberRoot} from './ReactInternalTypes';
// TODO: Ideally these types would be opaque but that doesn't work well with
// our reconciler fork infra, since these leak into non-reconciler packages.
export type LanePriority =
| 0
| 1
| 2
| 3
| 4
| 5
| 6
| 7
| 8
| 9
| 10
| 11
| 12
| 13
| 14
| 15
| 16
| 17;
export type Lanes = number;
export type Lane = number;