UNPKG

@evermade/overflow-slider

Version:

Accessible slider that is powered by overflow: auto.

15 lines (12 loc) 459 B
import { DeepPartial, Slider } from '../core/index.d2.ts'; type ScrollIndicatorOptions = { classNames: { scrollIndicator: string; scrollIndicatorBar: string; scrollIndicatorButton: string; }; container: HTMLElement | null; }; declare function ScrollIndicatorPlugin(args?: DeepPartial<ScrollIndicatorOptions>): (slider: Slider) => void; export { ScrollIndicatorPlugin as default }; export type { ScrollIndicatorOptions };