I was wondering if there was a way of emitting an event whose name comes from a variable. For instance: ```js const emit = defineEmits<{ close: void[] open: void[] }>() const eventName = ref<'close' | 'open'>('close') emit(eventName.value) // ts error No overload matches this call. ```