small changes
* hopefully fixes the deafening
* spelling
* new monkey matches
* official mod-sdk download
* R108 stubs
This commit is contained in:
2024-09-18 20:32:34 +00:00
parent f2d041edd5
commit ef8e2cb3ed
4 changed files with 17 additions and 17 deletions

2
ambient.d.ts vendored
View File

@@ -1,7 +1,7 @@
declare namespace LILY {
interface Utils {
remove_hook: undefined | (() => void)
true(callback: () => unknown): true // stops elsint from complainting about constant bool expressions
true(callback: () => unknown): true // stops eslint from complaining about constant bool expressions
with<V, R>(value: V, callback: (v: V) => R): R // A silly helper to kinda curry values
send(callback: () => boolean): boolean // updates the player if the function succeeds
}