mirror of
https://github.com/langgenius/dify.git
synced 2025-07-17 14:22:06 +00:00
24 lines
507 B
TypeScript
24 lines
507 B
TypeScript
import type { NodeDefault } from '../../types'
|
|
import type { EndNodeType } from './types'
|
|
import { genNodeMetaData } from '@/app/components/workflow/utils'
|
|
import { BlockEnum } from '@/app/components/workflow/types'
|
|
|
|
const metaData = genNodeMetaData({
|
|
sort: 2.1,
|
|
type: BlockEnum.End,
|
|
})
|
|
const nodeDefault: NodeDefault<EndNodeType> = {
|
|
metaData,
|
|
defaultValue: {
|
|
outputs: [],
|
|
},
|
|
checkValid() {
|
|
return {
|
|
isValid: true,
|
|
errorMessage: '',
|
|
}
|
|
},
|
|
}
|
|
|
|
export default nodeDefault
|