@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 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 -g typescript
20
+ npm install -D typescript
21
21
  ```
22
22
 
23
23
  For our nightly builds:
24
24
 
25
25
  ```bash
26
- npm install -g typescript@next
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
  */