-
Notifications
You must be signed in to change notification settings - Fork 1
/
numberpicker.d.ts
36 lines (26 loc) · 1.13 KB
/
numberpicker.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/**
* Contains the DatePicker class.
*/
declare module "nativescript-numberpicker" {
import view = require("ui/core/view");
import dependencyObservable = require("ui/core/dependency-observable");
/**
* Represents an date picker.
*/
export class NumberPicker extends view.View {
public static value: dependencyObservable.Property;
public static minValue: dependencyObservable.Property;
public static maxValue: dependencyObservable.Property;
constructor();
android: any;//calls get and set method implementation
ios: any;//calls get and set method implementation
value: number;//calls get and set method implementation
minValue: number;//calls get and set method implementation
maxValue: number;//calls get and set method implementation
//@private
_onValuePropertyChanged(data: dependencyObservable.PropertyChangeData): void;
_onMinValuePropertyChanged(data: dependencyObservable.PropertyChangeData): void;
_onMaxValuePropertyChanged(data: dependencyObservable.PropertyChangeData): void;
//@endprivate
}
}