2025-12-23 21:47:24 +00:00

6 lines
146 B
TypeScript

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