(name: string, fn: (...args: any[]) => any)
| 179 | }, |
| 180 | |
| 181 | registerJsFunction(name: string, fn: (...args: any[]) => any): void { |
| 182 | if (!luaEngine) throw new Error("Lua engine not initialized"); |
| 183 | luaEngine.global.set(name, fn); |
| 184 | }, |
| 185 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected