UNPKG

@evermade/overflow-slider

Version:

Accessible slider that is powered by overflow: auto.

17 lines (14 loc) 405 B
import { DeepPartial, Slider } from '../core/index.d2.ts'; type DotsOptions = { texts: { dotDescription: string; }; classNames: { dotsContainer: string; dotsItem: string; }; container: HTMLElement | null; }; declare function DotsPlugin(args?: DeepPartial<DotsOptions>): (slider: Slider) => void; export { DotsPlugin as default }; export type { DotsOptions };