@nativescript/core
Version:
A JavaScript library providing an easy to use api for interacting with iOS and Android platform APIs.
19 lines (18 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]: () => android.graphics.drawable.Drawable;
[colorProperty.setNative]: (value: Color) => void;
[backgroundColorProperty.getDefault]: () => number;
[backgroundColorProperty.setNative]: (value: Color) => void;
[backgroundInternalProperty.getDefault]: () => number;
[backgroundInternalProperty.setNative]: (value: Color) => void;
nativeViewProtected: android.widget.ProgressBar;
createNativeView(): globalAndroid.widget.ProgressBar;
}