Welcome to mirror list, hosted at ThFree Co, Russian Federation.

getHTMLElementScroll.d.ts « dom-utils « lib « package « popperjs - github.com/gohugoio/hugo-mod-jslibs-dist.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: df6cec9cb232153ca117c23e517a43ed9660193b (plain)
1
2
3
4
export default function getHTMLElementScroll(element: HTMLElement): {
    scrollLeft: number;
    scrollTop: number;
};