2025-12-20 01:09:13 +00:00

6 lines
146 B
TypeScript

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