File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
tests/baselines/reference/api Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -2192,6 +2192,7 @@ declare namespace ts {
2192
2192
indexType : Type ;
2193
2193
constraint ?: Type ;
2194
2194
}
2195
+ type TypeVariable = TypeParameter | IndexedAccessType ;
2195
2196
interface IndexType extends InstantiableType {
2196
2197
type : InstantiableType | UnionOrIntersectionType ;
2197
2198
}
@@ -2216,7 +2217,7 @@ declare namespace ts {
2216
2217
resolvedFalseType ?: Type ;
2217
2218
}
2218
2219
interface SubstitutionType extends InstantiableType {
2219
- typeParameter : TypeParameter ;
2220
+ typeVariable : TypeVariable ;
2220
2221
substitute : Type ;
2221
2222
}
2222
2223
enum SignatureKind {
Original file line number Diff line number Diff line change @@ -2192,6 +2192,7 @@ declare namespace ts {
2192
2192
indexType : Type ;
2193
2193
constraint ?: Type ;
2194
2194
}
2195
+ type TypeVariable = TypeParameter | IndexedAccessType ;
2195
2196
interface IndexType extends InstantiableType {
2196
2197
type : InstantiableType | UnionOrIntersectionType ;
2197
2198
}
@@ -2216,7 +2217,7 @@ declare namespace ts {
2216
2217
resolvedFalseType ?: Type ;
2217
2218
}
2218
2219
interface SubstitutionType extends InstantiableType {
2219
- typeParameter : TypeParameter ;
2220
+ typeVariable : TypeVariable ;
2220
2221
substitute : Type ;
2221
2222
}
2222
2223
enum SignatureKind {
You can’t perform that action at this time.
0 commit comments