UNPKG

pxt-core

Version:

Microsoft MakeCode provides Blocks / JavaScript / Python tools and editors

10 lines (9 loc) 280 B
import { ControlProps } from "../util"; export interface ProgressBarProps extends ControlProps { value: number; max?: number; title?: string; label?: string; ariaValueText?: string; } export declare const ProgressBar: (props: ProgressBarProps) => JSX.Element;