Don't expose platform types in public d.ts files.

Use any. Add a comment with the real type.
This commit is contained in:
Hristo Deshev
2015-10-30 17:01:15 +02:00
parent c84227dc4d
commit 70041bd999
33 changed files with 141 additions and 147 deletions

View File

@ -24,12 +24,12 @@ declare module "ui/button" {
/**
* Gets the native [android widget](http://developer.android.com/reference/android/widget/Button.html) that represents the user interface for this component. Valid only when running on Android OS.
*/
android: android.widget.Button;
android: any /* android.widget.Button */;
/**
* Gets the native [UIButton](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIButton_Class/) that represents the user interface for this component. Valid only when running on iOS.
*/
ios: UIButton;
ios: any /* UIButton */;
/**
* Gets or sets the text (label) displayed by this instance.
@ -62,4 +62,4 @@ declare module "ui/button" {
*/
_addChildFromBuilder(name: string, value: any): void;
}
}
}