[Refactor] Extract nodeDefSchema from apiSchema (#2756)

This commit is contained in:
Chenlei Hu
2025-02-27 13:39:23 -05:00
committed by GitHub
parent e380d792c7
commit 1d95d639e9
27 changed files with 226 additions and 217 deletions

View File

@@ -5,7 +5,8 @@ import { useNodeImage, useNodeVideo } from '@/composables/node/useNodeImage'
import { useNodeImageUpload } from '@/composables/node/useNodeImageUpload'
import { useValueTransform } from '@/composables/useValueTransform'
import { t } from '@/i18n'
import type { InputSpec, ResultItem } from '@/schemas/apiSchema'
import type { ResultItem } from '@/schemas/apiSchema'
import type { InputSpec } from '@/schemas/nodeDefSchema'
import type { ComfyWidgetConstructor } from '@/scripts/widgets'
import { useNodeOutputStore } from '@/stores/imagePreviewStore'
import type { ComfyApp } from '@/types'