get the type index of the object
()
| 472 | |
| 473 | /** get the type index of the object */ |
| 474 | typeIndex(): number { |
| 475 | if (this.handle === 0) { |
| 476 | throw Error("The current Object has already been disposed"); |
| 477 | } |
| 478 | return this.lib.memory.loadObjectTypeIndex(this.handle); |
| 479 | } |
| 480 | |
| 481 | /** get the type key of the object */ |
| 482 | typeKey(): string { |
no test coverage detected