@types/web 0.0.113 → 0.0.114

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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/index.d.ts +6 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -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.113 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.113.
50
+ You can read what changed in version 0.0.114 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.114.
package/index.d.ts CHANGED
@@ -5488,10 +5488,14 @@ interface CanvasTextDrawingStyles {
5488
5488
  font: string;
5489
5489
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/fontKerning) */
5490
5490
  fontKerning: CanvasFontKerning;
5491
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/letterSpacing) */
5492
+ letterSpacing: string;
5491
5493
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/textAlign) */
5492
5494
  textAlign: CanvasTextAlign;
5493
5495
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/textBaseline) */
5494
5496
  textBaseline: CanvasTextBaseline;
5497
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/wordSpacing) */
5498
+ wordSpacing: string;
5495
5499
  }
5496
5500
 
5497
5501
  interface CanvasTransform {
@@ -16380,6 +16384,8 @@ interface NotificationEventMap {
16380
16384
  * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification)
16381
16385
  */
16382
16386
  interface Notification extends EventTarget {
16387
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/badge) */
16388
+ readonly badge: string;
16383
16389
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/body) */
16384
16390
  readonly body: string;
16385
16391
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/data) */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/web",
3
- "version": "0.0.113",
3
+ "version": "0.0.114",
4
4
  "description": "Types for the DOM, and other web technologies in browsers",
5
5
  "license": "Apache-2.0",
6
6
  "contributors": [],