2025-12-23 18:47:07 +00:00

6 lines
146 B
TypeScript

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