mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-22 04:10:01 +00:00
refactor(editor): Upgrade frontend typing (no-changelog) (#9915)
This commit is contained in:
committed by
GitHub
parent
b2f8ea7918
commit
7f8857f69b
@@ -18,7 +18,9 @@ const props = withDefaults(defineProps<Props>(), {
|
||||
dismissible: true,
|
||||
});
|
||||
|
||||
const emit = defineEmits(['close']);
|
||||
const emit = defineEmits<{
|
||||
(event: 'close'): void;
|
||||
}>();
|
||||
|
||||
const hasTrailingContent = computed(() => {
|
||||
return !!slots.trailingContent;
|
||||
|
||||
Reference in New Issue
Block a user