mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 02:54:11 +08:00
9 lines
272 B
TypeScript
9 lines
272 B
TypeScript
import { TextView as TextViewDefinition } from '.';
|
|
import { EditableTextBase } from '../editable-text-base';
|
|
|
|
export class TextViewBase extends EditableTextBase implements TextViewDefinition {
|
|
public static returnPressEvent = 'returnPress';
|
|
|
|
public maxLines: number;
|
|
}
|