mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
Don't expose platform types in public d.ts files.
Use any. Add a comment with the real type.
This commit is contained in:
6
ui/progress/progress.d.ts
vendored
6
ui/progress/progress.d.ts
vendored
@@ -22,12 +22,12 @@ declare module "ui/progress" {
|
||||
/**
|
||||
* Gets the native [android widget](http://developer.android.com/reference/android/widget/ProgressBar.html) that represents the user interface for this component. Valid only when running on Android OS.
|
||||
*/
|
||||
android: android.widget.ProgressBar;
|
||||
android: any /* android.widget.ProgressBar */;
|
||||
|
||||
/**
|
||||
* Gets the native iOS [UIProgressView](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIProgressView_Class/) that represents the user interface for this component. Valid only when running on iOS.
|
||||
*/
|
||||
ios: UIProgressView;
|
||||
ios: any /* UIProgressView */;
|
||||
|
||||
/**
|
||||
* Gets or sets a progress current value.
|
||||
@@ -39,4 +39,4 @@ declare module "ui/progress" {
|
||||
*/
|
||||
maxValue: number;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user