@typescript-deploys/pr-build 5.0.0-pr-51492-2 → 5.0.0-pr-50996-9
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.es2015.core.d.ts +2 -2
- package/lib/lib.es5.d.ts +1 -1
- package/lib/tsc.js +354 -408
- package/lib/tsserver.js +1025 -786
- package/lib/tsserverlibrary.d.ts +2 -4
- package/lib/tsserverlibrary.js +1037 -788
- package/lib/typescript.d.ts +2 -4
- package/lib/typescript.js +1029 -785
- package/lib/typingsInstaller.js +149 -221
- package/package.json +1 -1
package/lib/typescript.d.ts
CHANGED
|
@@ -2783,6 +2783,7 @@ declare namespace ts {
|
|
|
2783
2783
|
interface EnumType extends Type {
|
|
2784
2784
|
}
|
|
2785
2785
|
enum ObjectFlags {
|
|
2786
|
+
None = 0,
|
|
2786
2787
|
Class = 1,
|
|
2787
2788
|
Interface = 2,
|
|
2788
2789
|
Reference = 4,
|
|
@@ -2953,6 +2954,7 @@ declare namespace ts {
|
|
|
2953
2954
|
declaration?: IndexSignatureDeclaration;
|
|
2954
2955
|
}
|
|
2955
2956
|
enum InferencePriority {
|
|
2957
|
+
None = 0,
|
|
2956
2958
|
NakedTypeVariable = 1,
|
|
2957
2959
|
SpeculativeTuple = 2,
|
|
2958
2960
|
SubstituteSource = 4,
|
|
@@ -5495,10 +5497,6 @@ declare namespace ts {
|
|
|
5495
5497
|
affected: SourceFile | Program;
|
|
5496
5498
|
} | undefined;
|
|
5497
5499
|
interface BuilderProgramHost {
|
|
5498
|
-
/**
|
|
5499
|
-
* return true if file names are treated with case sensitivity
|
|
5500
|
-
*/
|
|
5501
|
-
useCaseSensitiveFileNames(): boolean;
|
|
5502
5500
|
/**
|
|
5503
5501
|
* If provided this would be used this hash instead of actual file shape text for detecting changes
|
|
5504
5502
|
*/
|