P
This commit is contained in:
parent
5fe85f414b
commit
429f885936
2
rOSs.lua
2
rOSs.lua
|
@ -67,7 +67,7 @@ local function main(self)
|
||||||
main:setMonitor(d)
|
main:setMonitor(d)
|
||||||
main:addLabel():setText("uwu")
|
main:addLabel():setText("uwu")
|
||||||
main:addButton():setText("meow")
|
main:addButton():setText("meow")
|
||||||
basalt.autoUpdate()
|
basalt:autoUpdate()
|
||||||
end
|
end
|
||||||
main(nil)
|
main(nil)
|
||||||
return ____exports
|
return ____exports
|
||||||
|
|
6
src/types/basalt.d.ts
vendored
6
src/types/basalt.d.ts
vendored
|
@ -48,9 +48,9 @@ declare module basalt {
|
||||||
}
|
}
|
||||||
|
|
||||||
function debug(...txt: string[]): void;
|
function debug(...txt: string[]): void;
|
||||||
function autoUpdate(enabled?: boolean): void;
|
function autoUpdate(this: any, enabled?: boolean): void;
|
||||||
function stop(): void;
|
function stop(this: any): void;
|
||||||
function stopUpdate(): void;
|
function stopUpdate(this: any): void;
|
||||||
function addMonitor<T extends MonitorFrame>(): T;
|
function addMonitor<T extends MonitorFrame>(): T;
|
||||||
function createFrame<T extends BaseFrame>(id?: string): T;
|
function createFrame<T extends BaseFrame>(id?: string): T;
|
||||||
function setActiveFrame<T extends BaseFrame>(f: T): void;
|
function setActiveFrame<T extends BaseFrame>(f: T): void;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user