@evermade/overflow-slider
Version:
Accessible slider that is powered by overflow: auto.
12 lines (9 loc) • 366 B
TypeScript
import { DeepPartial, Slider } from '../core/index.d2.ts';
type FullWidthOptions = {
targetWidth?: (slider: Slider) => number;
addMarginBefore: boolean;
addMarginAfter: boolean;
};
declare function FullWidthPlugin(args?: DeepPartial<FullWidthOptions>): (slider: Slider) => void;
export { FullWidthPlugin as default };
export type { FullWidthOptions };