feat: code support vars

This commit is contained in:
Joel
2024-02-20 18:42:21 +08:00
parent bb87a350ac
commit d58a1b1359
11 changed files with 149 additions and 20 deletions

View File

@ -0,0 +1,6 @@
import type { CommonNodeType, Variable } from '@/app/components/workflow/types'
export type TemplateTransformNodeType = CommonNodeType & {
variables: Variable[]
template: string
}