© 2026 Hedgehog Software, LLC
const emit = defineEmits<{ close: void[] open: void[] }>() const eventName = ref<'close' | 'open'>('close') emit(eventName.value) // ts error No overload matches this call.