@@ -249,7 +249,6 @@ interface FontFaceDescriptors {
249249 stretch ?: string ;
250250 style ?: string ;
251251 unicodeRange ?: string ;
252- variant ?: string ;
253252 weight ?: string ;
254253}
255254
@@ -414,32 +413,21 @@ interface NavigationPreloadState {
414413 headerValue ?: string ;
415414}
416415
417- interface NotificationAction {
418- action : string ;
419- icon ?: string ;
420- title : string ;
421- }
422-
423416interface NotificationEventInit extends ExtendableEventInit {
424417 action ?: string ;
425418 notification : Notification ;
426419}
427420
428421interface NotificationOptions {
429- actions ?: NotificationAction [ ] ;
430422 badge ?: string ;
431423 body ?: string ;
432424 data ?: any ;
433425 dir ?: NotificationDirection ;
434426 icon ?: string ;
435- image ?: string ;
436427 lang ?: string ;
437- renotify ?: boolean ;
438428 requireInteraction ?: boolean ;
439429 silent ?: boolean | null ;
440430 tag ?: string ;
441- timestamp ?: EpochTimeStamp ;
442- vibrate ?: VibratePattern ;
443431}
444432
445433interface Pbkdf2Params extends Algorithm {
@@ -517,16 +505,21 @@ interface QueuingStrategyInit {
517505
518506interface RTCEncodedAudioFrameMetadata {
519507 contributingSources ?: number [ ] ;
508+ payloadType ?: number ;
509+ sequenceNumber ?: number ;
520510 synchronizationSource ?: number ;
521511}
522512
523513interface RTCEncodedVideoFrameMetadata {
514+ contributingSources ?: number [ ] ;
524515 dependencies ?: number [ ] ;
525516 frameId ?: number ;
526517 height ?: number ;
518+ payloadType ?: number ;
527519 spatialIndex ?: number ;
528520 synchronizationSource ?: number ;
529521 temporalIndex ?: number ;
522+ timestamp ?: number ;
530523 width ?: number ;
531524}
532525
@@ -1664,6 +1657,10 @@ interface CanvasTextDrawingStyles {
16641657 font : string ;
16651658 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/fontKerning) */
16661659 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 ;
16671664 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/letterSpacing) */
16681665 letterSpacing : string ;
16691666 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CanvasRenderingContext2D/textAlign) */
@@ -2951,8 +2948,6 @@ interface FontFace {
29512948 style : string ;
29522949 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/unicodeRange) */
29532950 unicodeRange : string ;
2954- /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/variant) */
2955- variant : string ;
29562951 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/weight) */
29572952 weight : string ;
29582953 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/FontFace/load) */
@@ -4133,6 +4128,8 @@ interface Notification extends EventTarget {
41334128 onerror : ( ( this : Notification , ev : Event ) => any ) | null ;
41344129 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/show_event) */
41354130 onshow : ( ( this : Notification , ev : Event ) => any ) | null ;
4131+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/requireInteraction) */
4132+ readonly requireInteraction : boolean ;
41364133 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/silent) */
41374134 readonly silent : boolean | null ;
41384135 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Notification/tag) */
@@ -9308,7 +9305,6 @@ type TexImageSource = ImageBitmap | ImageData | OffscreenCanvas | VideoFrame;
93089305type TimerHandler = string | Function ;
93099306type Transferable = OffscreenCanvas | ImageBitmap | MessagePort | ReadableStream | WritableStream | TransformStream | VideoFrame | ArrayBuffer ;
93109307type Uint32List = Uint32Array | GLuint [ ] ;
9311- type VibratePattern = number | number [ ] ;
93129308type XMLHttpRequestBodyInit = Blob | BufferSource | FormData | URLSearchParams | string ;
93139309type AlphaOption = "discard" | "keep" ;
93149310type AvcBitstreamFormat = "annexb" | "avc" ;
0 commit comments