Skip to content

Commit e37f996

Browse files
authored
Manually update to [email protected] (microsoft#1794)
Co-authored-by: saschanaz <[email protected]>
1 parent d4a482f commit e37f996

File tree

5 files changed

+19
-18
lines changed

5 files changed

+19
-18
lines changed

baselines/dom.generated.d.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7610,7 +7610,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
76107610
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/requestStorageAccess) */
76117611
requestStorageAccess(): Promise<void>;
76127612
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/startViewTransition) */
7613-
startViewTransition(callbackOptions?: UpdateCallback): ViewTransition;
7613+
startViewTransition(callbackOptions?: ViewTransitionUpdateCallback): ViewTransition;
76147614
/**
76157615
* Writes one or more HTML expressions to a document in the specified window.
76167616
* @param content Specifies the text and HTML tags to write.
@@ -27116,10 +27116,6 @@ interface UnderlyingSourceStartCallback<R> {
2711627116
(controller: ReadableStreamController<R>): any;
2711727117
}
2711827118

27119-
interface UpdateCallback {
27120-
(): any;
27121-
}
27122-
2712327119
interface VideoFrameOutputCallback {
2712427120
(output: VideoFrame): void;
2712527121
}
@@ -27128,6 +27124,10 @@ interface VideoFrameRequestCallback {
2712827124
(now: DOMHighResTimeStamp, metadata: VideoFrameCallbackMetadata): void;
2712927125
}
2713027126

27127+
interface ViewTransitionUpdateCallback {
27128+
(): any;
27129+
}
27130+
2713127131
interface VoidFunction {
2713227132
(): void;
2713327133
}

baselines/ts5.5/dom.generated.d.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7610,7 +7610,7 @@ interface Document extends Node, DocumentOrShadowRoot, FontFaceSource, GlobalEve
76107610
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/requestStorageAccess) */
76117611
requestStorageAccess(): Promise<void>;
76127612
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Document/startViewTransition) */
7613-
startViewTransition(callbackOptions?: UpdateCallback): ViewTransition;
7613+
startViewTransition(callbackOptions?: ViewTransitionUpdateCallback): ViewTransition;
76147614
/**
76157615
* Writes one or more HTML expressions to a document in the specified window.
76167616
* @param content Specifies the text and HTML tags to write.
@@ -27116,10 +27116,6 @@ interface UnderlyingSourceStartCallback<R> {
2711627116
(controller: ReadableStreamController<R>): any;
2711727117
}
2711827118

27119-
interface UpdateCallback {
27120-
(): any;
27121-
}
27122-
2712327119
interface VideoFrameOutputCallback {
2712427120
(output: VideoFrame): void;
2712527121
}
@@ -27128,6 +27124,10 @@ interface VideoFrameRequestCallback {
2712827124
(now: DOMHighResTimeStamp, metadata: VideoFrameCallbackMetadata): void;
2712927125
}
2713027126

27127+
interface ViewTransitionUpdateCallback {
27128+
(): any;
27129+
}
27130+
2713127131
interface VoidFunction {
2713227132
(): void;
2713327133
}

inputfiles/overridingTypes.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -737,7 +737,7 @@
737737
// StartViewTransitionOptions is not implemented as of 2024-06
738738
{
739739
"name": "callbackOptions",
740-
"type": "UpdateCallback"
740+
"type": "ViewTransitionUpdateCallback"
741741
}
742742
],
743743
}

inputfiles/removedTypes.jsonc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -677,7 +677,8 @@
677677
"RTCRtpEncodingParameters": {
678678
"members": {
679679
"member": {
680-
"scalabilityMode": null // Blink only as of 2022-09
680+
"codec": null, // Blink only as of 2024-08
681+
"scalabilityMode": null // Blink only as of 2024-08
681682
}
682683
}
683684
},

package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)