@types/web 0.0.237 → 0.0.239
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/index.d.ts +12585 -4213
- package/iterable.d.ts +98 -20
- package/package.json +1 -1
- package/ts5.5/index.d.ts +12580 -4208
- package/ts5.5/iterable.d.ts +98 -20
- package/ts5.6/index.d.ts +12585 -4213
- package/ts5.6/iterable.d.ts +98 -20
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@ This module contains the DOM types for the majority of the web APIs used in a we
|
|
|
4
4
|
|
|
5
5
|
The APIs inside `@types/web` are [generated from](https://github.com/microsoft/TypeScript-DOM-lib-generator/) the specifications for CSS, HTML and JavaScript. Given the size and state of constant change in web browsers, `@types/web` only has APIs which have passed a certain level of standardization and are available in at least two of the most popular browser engines.
|
|
6
6
|
|
|
7
|
-
`@types/web` is also included inside TypeScript, available as `dom` in the [`lib`](https://www.typescriptlang.org/tsconfig#lib) section and included in projects by default. By using `@types/web` you can lock
|
|
7
|
+
`@types/web` is also included inside TypeScript, available as `dom` in the [`lib`](https://www.typescriptlang.org/tsconfig#lib) section and included in projects by default. By using `@types/web` you can lock the web APIs used in your projects, easing the process of updating TypeScript and offering more control in your environment.
|
|
8
8
|
|
|
9
9
|
## Installation
|
|
10
10
|
|
|
@@ -47,4 +47,4 @@ Prior to `@types/web` the web APIs were deployed with a version of TypeScript, a
|
|
|
47
47
|
|
|
48
48
|
## Deploy Metadata
|
|
49
49
|
|
|
50
|
-
You can read what changed in version 0.0.
|
|
50
|
+
You can read what changed in version 0.0.239 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.239.
|