forked from NativeScript/NativeScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtext-view.d.ts
More file actions
23 lines (20 loc) · 957 Bytes
/
text-view.d.ts
File metadata and controls
23 lines (20 loc) · 957 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**
* 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 */;
}
}