get the type key of the object
()
| 480 | |
| 481 | /** get the type key of the object */ |
| 482 | typeKey(): string { |
| 483 | const type_index = this.typeIndex(); |
| 484 | const typeInfoPtr = (this.lib.exports.TVMFFIGetTypeInfo as ctypes.FTVMFFIGetTypeInfo)( |
| 485 | type_index |
| 486 | ); |
| 487 | return this.lib.memory.loadTypeInfoTypeKey(typeInfoPtr); |
| 488 | } |
| 489 | } |
| 490 | |
| 491 | /** |
nothing calls this directly
no test coverage detected