@vectrejs/vectre
Version:
Complete implementation of Spectre.css on Vue 2.x
20 lines (19 loc) • 586 B
TypeScript
import * as tsx from 'vue-tsx-support';
import { FormSliderEvents } from './Events';
export declare const FormSlider: tsx.TsxComponent<import("vue").default, {} & {
max?: string | number;
disabled?: boolean;
value?: string | number;
min?: string | number;
tooltip?: string | boolean | Function;
step?: string | number;
}, FormSliderEvents, {}, {
tooltipText: string | number;
} & {
min: string | number;
max: string | number;
step: string | number;
value: string | number;
tooltip: string | boolean | Function;
disabled: boolean;
}>;