UNPKG

react-smooth-scrollbar-z

Version:

A React wrapper for Smooth Scrollbar with hooks and plugin support

16 lines (15 loc) 401 B
import { ScrollbarPlugin } from "smooth-scrollbar"; export interface ScrollBlurOptions { blurAmount?: number; duration?: number; zIndex?: number; } export default class ScrollBlurPlugin extends ScrollbarPlugin { static pluginName: string; options: ScrollBlurOptions; private _timeout?; private _blurLayer; onInit(): void; onRender(): void; onDestroy(): void; }