@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/tsserverlibrary.d.ts
CHANGED
|
@@ -6719,6 +6719,7 @@ declare namespace ts {
|
|
|
6719
6719
|
interface EnumType extends Type {
|
|
6720
6720
|
}
|
|
6721
6721
|
enum ObjectFlags {
|
|
6722
|
+
None = 0,
|
|
6722
6723
|
Class = 1,
|
|
6723
6724
|
Interface = 2,
|
|
6724
6725
|
Reference = 4,
|
|
@@ -6889,6 +6890,7 @@ declare namespace ts {
|
|
|
6889
6890
|
declaration?: IndexSignatureDeclaration;
|
|
6890
6891
|
}
|
|
6891
6892
|
enum InferencePriority {
|
|
6893
|
+
None = 0,
|
|
6892
6894
|
NakedTypeVariable = 1,
|
|
6893
6895
|
SpeculativeTuple = 2,
|
|
6894
6896
|
SubstituteSource = 4,
|
|
@@ -9431,10 +9433,6 @@ declare namespace ts {
|
|
|
9431
9433
|
affected: SourceFile | Program;
|
|
9432
9434
|
} | undefined;
|
|
9433
9435
|
interface BuilderProgramHost {
|
|
9434
|
-
/**
|
|
9435
|
-
* return true if file names are treated with case sensitivity
|
|
9436
|
-
*/
|
|
9437
|
-
useCaseSensitiveFileNames(): boolean;
|
|
9438
9436
|
/**
|
|
9439
9437
|
* If provided this would be used this hash instead of actual file shape text for detecting changes
|
|
9440
9438
|
*/
|