@furman1331/page-scroller
Version:
Amazing plugin for creating smooth scroll on your website
5 lines • 358 B
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' | ' ';
//# sourceMappingURL=scroll.d.ts.map