mirror of
https://github.com/langgenius/dify.git
synced 2025-07-24 01:50:21 +00:00
20 lines
463 B
TypeScript
20 lines
463 B
TypeScript
import type { NodeDefault } from '../../types'
|
|
import type { LoopStartNodeType } from './types'
|
|
import { genNodeMetaData } from '@/app/components/workflow/utils'
|
|
import { BlockEnum } from '@/app/components/workflow/types'
|
|
|
|
const nodeDefault: NodeDefault<LoopStartNodeType> = {
|
|
...genNodeMetaData({
|
|
sort: -1,
|
|
type: BlockEnum.LoopStart,
|
|
}),
|
|
defaultValue: {},
|
|
checkValid() {
|
|
return {
|
|
isValid: true,
|
|
}
|
|
},
|
|
}
|
|
|
|
export default nodeDefault
|