update bindings
This commit is contained in:
parent
9b975004a8
commit
382b9d65d9
28 changed files with 268 additions and 46 deletions
|
|
@ -1,6 +1,6 @@
|
|||
import { NativeClasses } from "../milsko";
|
||||
import { Widget } from "../widget";
|
||||
import { WidgetOptions } from "../types";
|
||||
import type { WidgetOptions } from "../types";
|
||||
|
||||
export class Box extends Widget {
|
||||
constructor(options: WidgetOptions) {
|
||||
|
|
@ -66,4 +66,16 @@ export class Box extends Widget {
|
|||
set inverted(value: boolean) {
|
||||
this.setInteger("Iinverted", +value);
|
||||
}
|
||||
|
||||
public setWaitLayout(value: number): this {
|
||||
return this.setInteger("IwaitLayout", value);
|
||||
}
|
||||
|
||||
get waitLayout(): number {
|
||||
return this.getInteger("IwaitLayout");
|
||||
}
|
||||
|
||||
set waitLayout(value: number) {
|
||||
this.setInteger("IwaitLayout", value);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue