* Returns an object with key-value pairs of properties and their metadata definitions * @public
()
| 196 | * @public |
| 197 | */ |
| 198 | getProperties(): Record<string, Property> { |
| 199 | if (!this.metadata.properties) { |
| 200 | this.metadata.properties = {}; |
| 201 | } |
| 202 | return this.metadata.properties; |
| 203 | } |
| 204 | |
| 205 | /** |
| 206 | * Returns an object with key-value pairs of events and their metadata definitions |
no outgoing calls
no test coverage detected