We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c626d9d commit 936f98dCopy full SHA for 936f98d
src/compiler/types.ts
@@ -3344,6 +3344,7 @@ namespace ts {
3344
typeArguments?: Type[]; // Type reference type arguments (undefined if none)
3345
}
3346
3347
+ /* @internal */
3348
export const enum Variance {
3349
Invariant = 0, // Neither covariant nor contravariant
3350
Covariant = 1, // Covariant
@@ -3356,6 +3357,7 @@ namespace ts {
3356
3357
export interface GenericType extends InterfaceType, TypeReference {
3358
/* @internal */
3359
instantiations: Map<TypeReference>; // Generic instantiation cache
3360
3361
variances?: Variance[]; // Variance of each type parameter
3362
3363
0 commit comments