@nativescript/core
Version:
A JavaScript library providing an easy to use api for interacting with iOS and Android platform APIs.
20 lines (19 loc) • 1.02 kB
TypeScript
import { ProgressBase, valueProperty, maxValueProperty } from './progress-common';
import { Color } from '../../color';
import { colorProperty, backgroundColorProperty, backgroundInternalProperty } from '../styling/style-properties';
export * from './progress-common';
export declare class Progress extends ProgressBase {
[valueProperty.getDefault]: () => number;
[valueProperty.setNative]: (value: number) => void;
[maxValueProperty.getDefault]: () => number;
[maxValueProperty.setNative]: (value: number) => void;
[colorProperty.getDefault]: () => UIColor;
[colorProperty.setNative]: (value: Color | UIColor) => void;
[backgroundColorProperty.getDefault]: () => UIColor;
[backgroundColorProperty.setNative]: (value: UIColor | Color) => void;
[backgroundInternalProperty.getDefault]: () => UIColor;
[backgroundInternalProperty.setNative]: (value: Color) => void;
nativeViewProtected: UIProgressView;
createNativeView(): UIProgressView;
get ios(): UIProgressView;
}