@adoratorio/hades
Version:
A smooth scrollbar based on Hermes, scroll down 'till hell
22 lines • 715 B
TypeScript
import DragAndScroll from "./drag-and-scroll";
import LenisRender from "./lenis-render";
import NativeRender from "./native-render";
import Scrollbars from "./scrollbars";
import StartStop from "./start-stop";
import VirtualRender from "./virtual-render";
declare const plugins: {
DragAndScroll: typeof DragAndScroll;
LenisRender: typeof LenisRender;
NativeRender: typeof NativeRender;
Scrollbars: typeof Scrollbars;
StartStop: typeof StartStop;
VirtualRender: typeof VirtualRender;
};
export { DragAndScroll };
export { LenisRender };
export { NativeRender };
export { Scrollbars };
export { StartStop };
export { VirtualRender };
export default plugins;
//# sourceMappingURL=index.d.ts.map