@typescript-deploys/pr-build 5.1.0-pr-52968-5 → 5.1.0-pr-53258-7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/lib.es5.d.ts +0 -5
- package/lib/tsc.js +94 -139
- package/lib/tsserver.js +112 -139
- package/lib/tsserverlibrary.d.ts +4 -9
- package/lib/tsserverlibrary.js +114 -142
- package/lib/typescript.d.ts +4 -9
- package/lib/typescript.js +113 -142
- package/lib/typingsInstaller.js +7 -7
- package/package.json +3 -3
package/lib/tsserverlibrary.d.ts
CHANGED
|
@@ -6674,7 +6674,6 @@ declare namespace ts {
|
|
|
6674
6674
|
NonPrimitive = 67108864,
|
|
6675
6675
|
TemplateLiteral = 134217728,
|
|
6676
6676
|
StringMapping = 268435456,
|
|
6677
|
-
NoInfer = 536870912,
|
|
6678
6677
|
Literal = 2944,
|
|
6679
6678
|
Unit = 109472,
|
|
6680
6679
|
Freshable = 2976,
|
|
@@ -6690,11 +6689,11 @@ declare namespace ts {
|
|
|
6690
6689
|
UnionOrIntersection = 3145728,
|
|
6691
6690
|
StructuredType = 3670016,
|
|
6692
6691
|
TypeVariable = 8650752,
|
|
6693
|
-
InstantiableNonPrimitive =
|
|
6692
|
+
InstantiableNonPrimitive = 58982400,
|
|
6694
6693
|
InstantiablePrimitive = 406847488,
|
|
6695
|
-
Instantiable =
|
|
6696
|
-
StructuredOrInstantiable =
|
|
6697
|
-
Narrowable =
|
|
6694
|
+
Instantiable = 465829888,
|
|
6695
|
+
StructuredOrInstantiable = 469499904,
|
|
6696
|
+
Narrowable = 536624127
|
|
6698
6697
|
}
|
|
6699
6698
|
type DestructuringPattern = BindingPattern | ObjectLiteralExpression | ArrayLiteralExpression;
|
|
6700
6699
|
interface Type {
|
|
@@ -6889,10 +6888,6 @@ declare namespace ts {
|
|
|
6889
6888
|
symbol: Symbol;
|
|
6890
6889
|
type: Type;
|
|
6891
6890
|
}
|
|
6892
|
-
interface NoInferType extends InstantiableType {
|
|
6893
|
-
symbol: Symbol;
|
|
6894
|
-
type: Type;
|
|
6895
|
-
}
|
|
6896
6891
|
interface SubstitutionType extends InstantiableType {
|
|
6897
6892
|
objectFlags: ObjectFlags;
|
|
6898
6893
|
baseType: Type;
|