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