@furman1331/page-scroller
Version:
Amazing plugin for creating smooth scroll on your website
17 lines (14 loc) • 332 B
text/typescript
export type TScrollingMode = 'automatic' | 'manual'
export type TScrollingDirectionVertically = 'up' | 'down'
export type TScrollingDirectionHorizontally = 'left' | 'right'
export type TSupportedKeyboardKeys =
| 'ArrowUp'
| 'ArrowDown'
| 'ArrowRight'
| 'ArrowLeft'
| 'PageUp'
| 'PageDown'
| 'End'
| 'Home'
| 'Tab'
| ' '