Interface LuaTable<TKey, TValue>

A convenience type for working directly with a Lua table. For more information see: https://typescripttolua.github.io/docs/advanced/language-extensions

Type Parameters

  • TKey extends AnyNotNil = AnyNotNil

    The type of the keys used to access the table.

  • TValue = any

    The type of the values stored in the table.

Hierarchy

Properties

__tstlIterable: "Pairs"
delete: LuaTableDeleteMethod<TKey>
get: LuaTableGetMethod<TKey, TValue>
length: LuaLengthMethod<number>
set: LuaTableSetMethod<TKey, TValue>

Generated using TypeDoc