Accept new baselines

This commit is contained in:
Anders Hejlsberg 2018-06-16 07:48:17 -07:00
parent 4f99bc19c8
commit 64aabf23f8
2 changed files with 6 additions and 0 deletions

View File

@ -3351,6 +3351,9 @@ declare namespace ts {
hasRestElement: boolean;
associatedNames?: __String[];
}
interface TupleTypeReference extends TypeReference {
target: TupleType;
}
interface UnionOrIntersectionType extends Type {
types: Type[];
propertyCache: SymbolTable;

View File

@ -2279,6 +2279,9 @@ declare namespace ts {
hasRestElement: boolean;
associatedNames?: __String[];
}
interface TupleTypeReference extends TypeReference {
target: TupleType;
}
interface UnionOrIntersectionType extends Type {
types: Type[];
}