* Returns an object with key-value pairs of slots and their metadata definitions * @public
()
| 218 | * @public |
| 219 | */ |
| 220 | getSlots(): Record<string, Slot> { |
| 221 | if (!this.metadata.slots) { |
| 222 | this.metadata.slots = {}; |
| 223 | } |
| 224 | return this.metadata.slots; |
| 225 | } |
| 226 | |
| 227 | /** |
| 228 | * Determines whether this UI5 Element has any translatable texts (needs to be invalidated upon language change) |
no outgoing calls
no test coverage detected