2025-12-23 10:46:17 +00:00

6 lines
148 B
TypeScript

import type { Window } from "../types";
export default function getWindowScroll(node: Node | Window): {
scrollLeft: any;
scrollTop: any;
};