Files
NativeScript/ui/text-view/text-view.d.ts
Hristo Deshev 70041bd999 Don't expose platform types in public d.ts files.
Use any. Add a comment with the real type.
2015-10-30 17:17:29 +02:00

24 lines
957 B
TypeScript

/**
* Contains the TextView class, which represents an editable multi-line line box.
*/
declare module "ui/text-view" {
import editableTextBase = require("ui/editable-text-base");
/**
* Represents an editable multiline text view.
*/
export class TextView extends editableTextBase.EditableTextBase {
constructor(options?: editableTextBase.Options);
/**
* Gets the native [android widget](http://developer.android.com/reference/android/widget/EditText.html) that represents the user interface for this component. Valid only when running on Android OS.
*/
android: any /* android.widget.EditText */;
/**
* Gets the native iOS [UITextView](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UITextView_Class/) that represents the user interface for this component. Valid only when running on iOS.
*/
ios: any /* UITextView */;
}
}