@types/serviceworker 0.0.72 → 0.0.73
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 +1 -1
- package/index.d.ts +6 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -28,4 +28,4 @@ This project does not respect semantic versioning as almost every change could p
|
|
|
28
28
|
|
|
29
29
|
## Deploy Metadata
|
|
30
30
|
|
|
31
|
-
You can read what changed in version 0.0.
|
|
31
|
+
You can read what changed in version 0.0.73 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fserviceworker%400.0.73.
|
package/index.d.ts
CHANGED
|
@@ -1530,10 +1530,14 @@ interface CanvasTextDrawingStyles {
|
|
|
1530
1530
|
font: string;
|
|
1531
1531
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/fontKerning) */
|
|
1532
1532
|
fontKerning: CanvasFontKerning;
|
|
1533
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/letterSpacing) */
|
|
1534
|
+
letterSpacing: string;
|
|
1533
1535
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/textAlign) */
|
|
1534
1536
|
textAlign: CanvasTextAlign;
|
|
1535
1537
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/textBaseline) */
|
|
1536
1538
|
textBaseline: CanvasTextBaseline;
|
|
1539
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/wordSpacing) */
|
|
1540
|
+
wordSpacing: string;
|
|
1537
1541
|
}
|
|
1538
1542
|
|
|
1539
1543
|
interface CanvasTransform {
|
|
@@ -3854,6 +3858,8 @@ interface NotificationEventMap {
|
|
|
3854
3858
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification)
|
|
3855
3859
|
*/
|
|
3856
3860
|
interface Notification extends EventTarget {
|
|
3861
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/badge) */
|
|
3862
|
+
readonly badge: string;
|
|
3857
3863
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/body) */
|
|
3858
3864
|
readonly body: string;
|
|
3859
3865
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/data) */
|