Skip to content

Commit 8cb9ac9

Browse files
committed
Accept new baselines
1 parent de1ebb4 commit 8cb9ac9

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

tests/baselines/reference/api/tsserverlibrary.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2192,6 +2192,7 @@ declare namespace ts {
21922192
indexType: Type;
21932193
constraint?: Type;
21942194
}
2195+
type TypeVariable = TypeParameter | IndexedAccessType;
21952196
interface IndexType extends InstantiableType {
21962197
type: InstantiableType | UnionOrIntersectionType;
21972198
}
@@ -2216,7 +2217,7 @@ declare namespace ts {
22162217
resolvedFalseType?: Type;
22172218
}
22182219
interface SubstitutionType extends InstantiableType {
2219-
typeParameter: TypeParameter;
2220+
typeVariable: TypeVariable;
22202221
substitute: Type;
22212222
}
22222223
enum SignatureKind {

tests/baselines/reference/api/typescript.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2192,6 +2192,7 @@ declare namespace ts {
21922192
indexType: Type;
21932193
constraint?: Type;
21942194
}
2195+
type TypeVariable = TypeParameter | IndexedAccessType;
21952196
interface IndexType extends InstantiableType {
21962197
type: InstantiableType | UnionOrIntersectionType;
21972198
}
@@ -2216,7 +2217,7 @@ declare namespace ts {
22162217
resolvedFalseType?: Type;
22172218
}
22182219
interface SubstitutionType extends InstantiableType {
2219-
typeParameter: TypeParameter;
2220+
typeVariable: TypeVariable;
22202221
substitute: Type;
22212222
}
22222223
enum SignatureKind {

0 commit comments

Comments
 (0)