@@ -249,7 +249,6 @@ interface FontFaceDescriptors {
249
249
stretch ?: string ;
250
250
style ?: string ;
251
251
unicodeRange ?: string ;
252
- variant ?: string ;
253
252
weight ?: string ;
254
253
}
255
254
@@ -414,32 +413,21 @@ interface NavigationPreloadState {
414
413
headerValue ?: string ;
415
414
}
416
415
417
- interface NotificationAction {
418
- action : string ;
419
- icon ?: string ;
420
- title : string ;
421
- }
422
-
423
416
interface NotificationEventInit extends ExtendableEventInit {
424
417
action ?: string ;
425
418
notification : Notification ;
426
419
}
427
420
428
421
interface NotificationOptions {
429
- actions ?: NotificationAction [ ] ;
430
422
badge ?: string ;
431
423
body ?: string ;
432
424
data ?: any ;
433
425
dir ?: NotificationDirection ;
434
426
icon ?: string ;
435
- image ?: string ;
436
427
lang ?: string ;
437
- renotify ?: boolean ;
438
428
requireInteraction ?: boolean ;
439
429
silent ?: boolean | null ;
440
430
tag ?: string ;
441
- timestamp ?: EpochTimeStamp ;
442
- vibrate ?: VibratePattern ;
443
431
}
444
432
445
433
interface Pbkdf2Params extends Algorithm {
@@ -517,16 +505,21 @@ interface QueuingStrategyInit {
517
505
518
506
interface RTCEncodedAudioFrameMetadata {
519
507
contributingSources ?: number [ ] ;
508
+ payloadType ?: number ;
509
+ sequenceNumber ?: number ;
520
510
synchronizationSource ?: number ;
521
511
}
522
512
523
513
interface RTCEncodedVideoFrameMetadata {
514
+ contributingSources ?: number [ ] ;
524
515
dependencies ?: number [ ] ;
525
516
frameId ?: number ;
526
517
height ?: number ;
518
+ payloadType ?: number ;
527
519
spatialIndex ?: number ;
528
520
synchronizationSource ?: number ;
529
521
temporalIndex ?: number ;
522
+ timestamp ?: number ;
530
523
width ?: number ;
531
524
}
532
525
@@ -1664,6 +1657,10 @@ interface CanvasTextDrawingStyles {
1664
1657
font : string ;
1665
1658
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/fontKerning) */
1666
1659
fontKerning : CanvasFontKerning ;
1660
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/fontStretch) */
1661
+ fontStretch : CanvasFontStretch ;
1662
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/fontVariantCaps) */
1663
+ fontVariantCaps : CanvasFontVariantCaps ;
1667
1664
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/letterSpacing) */
1668
1665
letterSpacing : string ;
1669
1666
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/textAlign) */
@@ -2951,8 +2948,6 @@ interface FontFace {
2951
2948
style : string ;
2952
2949
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/unicodeRange) */
2953
2950
unicodeRange : string ;
2954
- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/variant) */
2955
- variant : string ;
2956
2951
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/weight) */
2957
2952
weight : string ;
2958
2953
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/load) */
@@ -4133,6 +4128,8 @@ interface Notification extends EventTarget {
4133
4128
onerror : ( ( this : Notification , ev : Event ) => any ) | null ;
4134
4129
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/show_event) */
4135
4130
onshow : ( ( this : Notification , ev : Event ) => any ) | null ;
4131
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/requireInteraction) */
4132
+ readonly requireInteraction : boolean ;
4136
4133
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/silent) */
4137
4134
readonly silent : boolean | null ;
4138
4135
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/tag) */
@@ -9308,7 +9305,6 @@ type TexImageSource = ImageBitmap | ImageData | OffscreenCanvas | VideoFrame;
9308
9305
type TimerHandler = string | Function ;
9309
9306
type Transferable = OffscreenCanvas | ImageBitmap | MessagePort | ReadableStream | WritableStream | TransformStream | VideoFrame | ArrayBuffer ;
9310
9307
type Uint32List = Uint32Array | GLuint [ ] ;
9311
- type VibratePattern = number | number [ ] ;
9312
9308
type XMLHttpRequestBodyInit = Blob | BufferSource | FormData | URLSearchParams | string ;
9313
9309
type AlphaOption = "discard" | "keep" ;
9314
9310
type AvcBitstreamFormat = "annexb" | "avc" ;
0 commit comments