mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 11:42:04 +08:00
7 lines
164 B
TypeScript
7 lines
164 B
TypeScript
declare module "ui/text-field" {
|
|
import view = require("ui/core/view");
|
|
|
|
export class TextField extends view.View {
|
|
public text: string;
|
|
}
|
|
}
|