Fix lint issues

pull/1085/head
Zef Hemel 2024-09-12 21:53:37 +02:00
parent 4c87d3eb9e
commit 9d43c9a11d
1 changed files with 2 additions and 2 deletions

View File

@ -52,7 +52,7 @@ export class LuaFunction implements ILuaFunction {
constructor(readonly body: LuaFunctionBody) {
}
call(...args: any[]): Promise<LuaMultiRes> | LuaMultiRes {
call(..._args: any[]): Promise<LuaMultiRes> | LuaMultiRes {
throw new Error("Not yet implemented funciton call");
}
}
@ -84,7 +84,7 @@ export class LuaTable {
}
}
function luaSet(obj: any, key: any, value: any) {
export function luaSet(obj: any, key: any, value: any) {
if (obj instanceof LuaTable) {
obj.set(key, value);
} else {