UNPKG

react-smooth-scrollbar-z

Version:

A React wrapper for Smooth Scrollbar with hooks and plugin support

10 lines (9 loc) 296 B
import { BasePlugin, type ScrollDelta } from "./BasePlugin"; export interface MomentumOptions { multiplier?: number; } export default class MomentumPlugin extends BasePlugin { static pluginName: string; options: MomentumOptions; transformDelta(delta: ScrollDelta): ScrollDelta; }