UNPKG

preline

Version:

Preline UI is an open-source set of prebuilt UI components based on the utility-first Tailwind CSS framework.

27 lines (20 loc) 569 B
import type { Options } from 'nouislider'; import { TRangeSliderOptionsFormatterType } from './types'; export interface IRangeSliderCssClassesObject { [key: string]: any; } export interface IRangeSliderOptionsFormatterOptions { type?: TRangeSliderOptionsFormatterType; prefix?: string; postfix?: string; } export interface IRangeSliderOptions extends Options { disabled?: boolean; formatter?: | IRangeSliderOptionsFormatterOptions | TRangeSliderOptionsFormatterType; } export interface IRangeSlider { options?: IRangeSliderOptions; destroy(): void; }