@@ -39325,22 +39325,22 @@ interface Window extends EventTarget, AnimationFrameProvider, GlobalEventHandler
3932539325 *
3932639326 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/scroll)
3932739327 */
39328- scroll(options?: ScrollToOptions): Promise< void> ;
39329- scroll(x: number, y: number): Promise< void> ;
39328+ scroll(options?: ScrollToOptions): void;
39329+ scroll(x: number, y: number): void;
3933039330 /**
3933139331 * The **`Window.scrollBy()`** method scrolls the document in the window by the given amount.
3933239332 *
3933339333 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/scrollBy)
3933439334 */
39335- scrollBy(options?: ScrollToOptions): Promise< void> ;
39336- scrollBy(x: number, y: number): Promise< void> ;
39335+ scrollBy(options?: ScrollToOptions): void;
39336+ scrollBy(x: number, y: number): void;
3933739337 /**
3933839338 * **`Window.scrollTo()`** scrolls to a particular set of coordinates in the document.
3933939339 *
3934039340 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/scrollTo)
3934139341 */
39342- scrollTo(options?: ScrollToOptions): Promise< void> ;
39343- scrollTo(x: number, y: number): Promise< void> ;
39342+ scrollTo(options?: ScrollToOptions): void;
39343+ scrollTo(x: number, y: number): void;
3934439344 /**
3934539345 * The **`window.stop()`** stops further resource loading in the current browsing context, equivalent to the stop button in the browser.
3934639346 *
@@ -41489,22 +41489,22 @@ declare function resizeTo(width: number, height: number): void;
4148941489 *
4149041490 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/scroll)
4149141491 */
41492- declare function scroll(options?: ScrollToOptions): Promise< void> ;
41493- declare function scroll(x: number, y: number): Promise< void> ;
41492+ declare function scroll(options?: ScrollToOptions): void;
41493+ declare function scroll(x: number, y: number): void;
4149441494/**
4149541495 * The **`Window.scrollBy()`** method scrolls the document in the window by the given amount.
4149641496 *
4149741497 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/scrollBy)
4149841498 */
41499- declare function scrollBy(options?: ScrollToOptions): Promise< void> ;
41500- declare function scrollBy(x: number, y: number): Promise< void> ;
41499+ declare function scrollBy(options?: ScrollToOptions): void;
41500+ declare function scrollBy(x: number, y: number): void;
4150141501/**
4150241502 * **`Window.scrollTo()`** scrolls to a particular set of coordinates in the document.
4150341503 *
4150441504 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/scrollTo)
4150541505 */
41506- declare function scrollTo(options?: ScrollToOptions): Promise< void> ;
41507- declare function scrollTo(x: number, y: number): Promise< void> ;
41506+ declare function scrollTo(options?: ScrollToOptions): void;
41507+ declare function scrollTo(x: number, y: number): void;
4150841508/**
4150941509 * The **`window.stop()`** stops further resource loading in the current browsing context, equivalent to the stop button in the browser.
4151041510 *
0 commit comments