UNPKG

ts-jsdk

Version:

TypeScript implementation of the Java platform

11 lines 265 B
import { JComponent } from "./JComponent"; export class JTextComponent extends JComponent { constructor() { super(...arguments); this.value = ""; } getText() { return this.value; } } //# sourceMappingURL=JTextComponent.js.map