lua-types icon indicating copy to clipboard operation
lua-types copied to clipboard

Allow `LuaTable<TKey, TValue>` use in table manipulation functions

Open kapodamy opened this issue 7 months ago • 0 comments

avoids using as typescript operator on pure tables to avoid compile errors.

test case:

var timer_table = new LuaTable<number, string>();

old usage:

table.insert(timer_table as any, "abc123");

new usage:

table.insert(timer_table, "abc123");

kapodamy avatar May 18 '25 22:05 kapodamy