UNPKG

@dfinity/gix-components

Version:
12 lines (11 loc) 323 B
/// <reference types="svelte" /> interface Props { max: number; min: number; value: number; ariaLabel: string; handleInput?: (() => void) | undefined; } declare const InputRange: import("svelte").Component<Props, {}, "value">; type InputRange = ReturnType<typeof InputRange>; export default InputRange;