UNPKG

fluent-svelte-extra

Version:

A faithful implementation of Microsoft's Fluent Design System in Svelte.

24 lines (23 loc) 718 B
import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; min?: number; max?: number; step?: number; values?: number[]; }; events: { change: CustomEvent<any>; finish: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }; slots: {}; }; export declare type RangeSliderProps = typeof __propDef.props; export declare type RangeSliderEvents = typeof __propDef.events; export declare type RangeSliderSlots = typeof __propDef.slots; export default class RangeSlider extends SvelteComponentTyped<RangeSliderProps, RangeSliderEvents, RangeSliderSlots> { } export {};