new types and classes

This commit is contained in:
PwLDev 2026-05-04 11:38:58 -07:00
commit 9a3a1b084a
26 changed files with 1324 additions and 2 deletions

View file

@ -0,0 +1,21 @@
import { NativeClasses } from "../milsko";
import { Widget } from "../widget";
import { WidgetOptions } from "../types";
export class NumberEntry extends Widget {
constructor(options: WidgetOptions) {
super(NativeClasses.NumberEntry, options);
}
public setText(value: string): this {
return this.setString("Stext", value);
}
get text(): string {
return this.getString("Stext");
}
set text(value: string) {
this.setString("Stext", value);
}
}