2026-01-18 08:28:59 +00:00

6 lines
146 B
TypeScript

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