UNPKG

react-smooth-scrollbar-z

Version:

A React wrapper for Smooth Scrollbar with hooks and plugin support

18 lines (17 loc) 459 B
import { ScrollbarPlugin } from "smooth-scrollbar"; export interface VirtualScrollOptions { /** Số pixel mỗi bước ảo */ step?: number; } export default class VirtualScrollPlugin extends ScrollbarPlugin { static pluginName: string; static defaultOptions: VirtualScrollOptions; options: VirtualScrollOptions; transformDelta(delta: { x: number; y: number; }): { x: number; y: number; }; }