@types/sharedworker 0.0.101 → 0.0.102
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.102 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fsharedworker%400.0.102.
|
package/index.d.ts
CHANGED
|
@@ -1502,10 +1502,14 @@ interface CanvasTextDrawingStyles {
|
|
|
1502
1502
|
font: string;
|
|
1503
1503
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/fontKerning) */
|
|
1504
1504
|
fontKerning: CanvasFontKerning;
|
|
1505
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/letterSpacing) */
|
|
1506
|
+
letterSpacing: string;
|
|
1505
1507
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/textAlign) */
|
|
1506
1508
|
textAlign: CanvasTextAlign;
|
|
1507
1509
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/textBaseline) */
|
|
1508
1510
|
textBaseline: CanvasTextBaseline;
|
|
1511
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/wordSpacing) */
|
|
1512
|
+
wordSpacing: string;
|
|
1509
1513
|
}
|
|
1510
1514
|
|
|
1511
1515
|
interface CanvasTransform {
|
|
@@ -3743,6 +3747,8 @@ interface NotificationEventMap {
|
|
|
3743
3747
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification)
|
|
3744
3748
|
*/
|
|
3745
3749
|
interface Notification extends EventTarget {
|
|
3750
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/badge) */
|
|
3751
|
+
readonly badge: string;
|
|
3746
3752
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/body) */
|
|
3747
3753
|
readonly body: string;
|
|
3748
3754
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/data) */
|