UNPKG

148 BTypeScriptView Raw
1import type { Window } from "../types";
2export default function getWindowScroll(node: Node | Window): {
3 scrollLeft: any;
4 scrollTop: any;
5};