Returns an array of keys of an object, when iterated with `pairs`.
(o: LuaPairsIterable<K, any> | LuaPairsKeyIterable<K>)
| 688 | interface ObjectConstructor { |
| 689 | /** Returns an array of keys of an object, when iterated with `pairs`. */ |
| 690 | keys<K extends AnyNotNil>(o: LuaPairsIterable<K, any> | LuaPairsKeyIterable<K>): K[]; |
| 691 | |
| 692 | /** Returns an array of values of an object, when iterated with `pairs`. */ |
| 693 | values<V>(o: LuaPairsIterable<any, V>): V[]; |
no outgoing calls
no test coverage detected