refactor(editor): Upgrade frontend typing (no-changelog) (#9915)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2024-07-03 14:19:24 +02:00
committed by GitHub
parent b2f8ea7918
commit 7f8857f69b
40 changed files with 172 additions and 99 deletions

View File

@@ -66,7 +66,9 @@ const { getSchemaForExecutionData, filterSchema } = useDataSchema();
const { getNodeInputData } = useNodeHelpers();
const { debounce } = useDebounce();
const emit = defineEmits<{ (event: 'clear:search'): void }>();
const emit = defineEmits<{
(event: 'clear:search'): void;
}>();
const nodeSchema = computed(() =>
filterSchema(getSchemaForExecutionData(props.data ?? []), props.search),