@typescript-deploys/pr-build 5.1.0-pr-51837-45 → 5.1.0-pr-52968-5
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/README.md +2 -2
- package/lib/lib.es5.d.ts +5 -0
- package/lib/tsc.js +222 -225
- package/lib/tsserver.js +215 -233
- package/lib/tsserverlibrary.d.ts +10 -6
- package/lib/tsserverlibrary.js +216 -234
- package/lib/typescript.d.ts +10 -6
- package/lib/typescript.js +216 -234
- package/lib/typingsInstaller.js +105 -167
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -17,13 +17,13 @@ Find others who are using TypeScript at [our community page](https://www.typescr
|
|
|
17
17
|
For the latest stable version:
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
|
-
npm install -
|
|
20
|
+
npm install -D typescript
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
For our nightly builds:
|
|
24
24
|
|
|
25
25
|
```bash
|
|
26
|
-
npm install -
|
|
26
|
+
npm install -D typescript@next
|
|
27
27
|
```
|
|
28
28
|
|
|
29
29
|
## Contribute
|
package/lib/lib.es5.d.ts
CHANGED
|
@@ -1647,6 +1647,11 @@ type Capitalize<S extends string> = intrinsic;
|
|
|
1647
1647
|
*/
|
|
1648
1648
|
type Uncapitalize<S extends string> = intrinsic;
|
|
1649
1649
|
|
|
1650
|
+
/**
|
|
1651
|
+
* Blocks the contained type from participating in type inference.
|
|
1652
|
+
*/
|
|
1653
|
+
type NoInfer<T> = intrinsic;
|
|
1654
|
+
|
|
1650
1655
|
/**
|
|
1651
1656
|
* Marker for contextual 'this' type
|
|
1652
1657
|
*/
|