UNPKG

628 BTypeScriptView Raw
1import { Progress as ProgressDefinition } from '.';
2import { View } from '../core/view';
3import { Property, CoercibleProperty } from '../core/properties';
4export declare class ProgressBase extends View implements ProgressDefinition {
5 value: number;
6 maxValue: number;
7}
8/**
9 * Represents the observable property backing the value property of each Progress instance.
10 */
11export declare const valueProperty: CoercibleProperty<ProgressBase, number>;
12/**
13 * Represents the observable property backing the maxValue property of each Progress instance.
14 */
15export declare const maxValueProperty: Property<ProgressBase, number>;