UNPKG

@nativescript/core

Version:

A JavaScript library providing an easy to use api for interacting with iOS and Android platform APIs.

16 lines (15 loc) 628 B
import { Progress as ProgressDefinition } from '.'; import { View } from '../core/view'; import { Property, CoercibleProperty } from '../core/properties'; export declare class ProgressBase extends View implements ProgressDefinition { value: number; maxValue: number; } /** * Represents the observable property backing the value property of each Progress instance. */ export declare const valueProperty: CoercibleProperty<ProgressBase, number>; /** * Represents the observable property backing the maxValue property of each Progress instance. */ export declare const maxValueProperty: Property<ProgressBase, number>;