@evermade/overflow-slider
Version:
Accessible slider that is powered by overflow: auto.
18 lines (15 loc) • 468 B
TypeScript
import { DeepPartial, Slider } from '../core/index.d2.ts';
type SkipLinkOptions = {
texts: {
skipList: string;
};
classNames: {
skipLink: string;
skipLinkTarget: string;
};
containerBefore: HTMLElement | null;
containerAfter: HTMLElement | null;
};
declare function SkipLinksPlugin(args?: DeepPartial<SkipLinkOptions>): (slider: Slider) => void;
export { SkipLinksPlugin as default };
export type { SkipLinkOptions };