UNPKG

rnbokit

Version:

<img width="491" alt="Screenshot 2023-06-26 at 22 29 43" src="https://github.com/SanderNotenbaert/RNBOKit/assets/34664737/5c54599e-fb9f-4131-a28a-ba4993f2f064">

42 lines (41 loc) 1.05 kB
/** @typedef {typeof __propDef.props} RangeSliderProps */ /** @typedef {typeof __propDef.events} RangeSliderEvents */ /** @typedef {typeof __propDef.slots} RangeSliderSlots */ export default class RangeSlider extends SvelteComponentTyped<{ name: any; value?: number; min?: number; max?: number; step?: number; label?: string; }, { click: MouseEvent; change: Event; blur: FocusEvent; } & { [evt: string]: CustomEvent<any>; }, {}> { } export type RangeSliderProps = typeof __propDef.props; export type RangeSliderEvents = typeof __propDef.events; export type RangeSliderSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { name: any; value?: number; min?: number; max?: number; step?: number; label?: string; }; events: { click: MouseEvent; change: Event; blur: FocusEvent; } & { [evt: string]: CustomEvent<any>; }; slots: {}; }; export {};