Skip to content

Commit 936f98d

Browse files
committed
Addressing CR feedback
1 parent c626d9d commit 936f98d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/compiler/types.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3344,6 +3344,7 @@ namespace ts {
33443344
typeArguments?: Type[]; // Type reference type arguments (undefined if none)
33453345
}
33463346

3347+
/* @internal */
33473348
export const enum Variance {
33483349
Invariant = 0, // Neither covariant nor contravariant
33493350
Covariant = 1, // Covariant
@@ -3356,6 +3357,7 @@ namespace ts {
33563357
export interface GenericType extends InterfaceType, TypeReference {
33573358
/* @internal */
33583359
instantiations: Map<TypeReference>; // Generic instantiation cache
3360+
/* @internal */
33593361
variances?: Variance[]; // Variance of each type parameter
33603362
}
33613363

0 commit comments

Comments
 (0)