UNPKG

seng-scroll-tracker

Version:

Class that keeps track of the vertical scroll position of an element.

9 lines (8 loc) 172 B
/** * Enum for axis of the ScrollTracker. Use X for horizontal scrolling and Y for vertical scrolling. */ declare enum Axis { X = 1, Y = 2 } export default Axis;