mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 03:31:45 +08:00
13 lines
486 B
TypeScript
13 lines
486 B
TypeScript
import definition = require("ui/text-view");
|
|
import textBase = require("ui/text-base");
|
|
import editableTextBase = require("ui/editable-text-base");
|
|
|
|
// merge the exports of the textBase file with the exports of this file
|
|
declare var exports;
|
|
require("utils/module-merge").merge(textBase, exports);
|
|
|
|
export class TextView extends editableTextBase.EditableTextBase implements definition.TextView {
|
|
constructor(options?: editableTextBase.Options) {
|
|
super(options);
|
|
}
|
|
}
|