Fix type-check error (#27051)

This commit is contained in:
GuanMu
2025-10-18 12:03:40 +08:00
committed by GitHub
parent 830f891a74
commit 1a37989769
8 changed files with 27 additions and 18 deletions

View File

@@ -11,6 +11,11 @@ export type OutputVar = Record<string, {
children: null // support nest in the future,
}>
export type CodeDependency = {
name: string
version?: string
}
export type CodeNodeType = CommonNodeType & {
variables: Variable[]
code_language: CodeLanguage