UNPKG

pxt-core

Version:

Microsoft MakeCode provides Blocks / JavaScript / Python tools and editors

12 lines (11 loc) 382 B
import { ControlProps } from "../util"; export interface VerticalSliderProps extends ControlProps { value: number; min: number; max: number; step: number; bigStep?: number; onValueChanged: (newValue: number) => void; ariaValueText: string | ((value: number) => string); } export declare const VerticalSlider: (props: VerticalSliderProps) => JSX.Element;