(slot: string)
| 4 | import { VALID_SLOTS } from "../types/pluginSlots"; |
| 5 | |
| 6 | function validateSlotName(slot: string): SlotName | null { |
| 7 | return VALID_SLOTS.has(slot) ? (slot as SlotName) : null; |
| 8 | } |
| 9 | |
| 10 | /** |
| 11 | * Loads a single UI extension module dynamically. |
no outgoing calls
no test coverage detected