`defineEmits` snippet looks like this: ```ts defineEmits<{ eventName: [] }>() ``` But I think it should always have `const` keyword. ```ts const emit = defineEmits<{ eventName: [] }>() ```