mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 11:01:15 +00:00
refactor(editor): Standardize how we use defineEmits in components using the composition API (no-changelog) (#9934)
This commit is contained in:
@@ -569,11 +569,11 @@ const props = withDefaults(defineProps<Props>(), {
|
||||
});
|
||||
|
||||
const emit = defineEmits<{
|
||||
(event: 'focus'): void;
|
||||
(event: 'blur'): void;
|
||||
(event: 'drop', expression: string): void;
|
||||
(event: 'textInput', update: IUpdateInformation): void;
|
||||
(event: 'update', update: IUpdateInformation): void;
|
||||
focus: [];
|
||||
blur: [];
|
||||
drop: [expression: string];
|
||||
textInput: [update: IUpdateInformation];
|
||||
update: [update: IUpdateInformation];
|
||||
}>();
|
||||
|
||||
const externalHooks = useExternalHooks();
|
||||
|
||||
Reference in New Issue
Block a user