mirror of https://github.com/langgenius/dify.git
21 lines
412 B
TypeScript
21 lines
412 B
TypeScript
import type { NodeDefault } from '../../types'
|
|
import { type EndNodeType, EndVarType } from './types'
|
|
|
|
const nodeDefault: NodeDefault<EndNodeType> = {
|
|
defaultValue: {
|
|
outputs: {
|
|
type: EndVarType.none,
|
|
plain_text_selector: [],
|
|
structured_variables: [],
|
|
},
|
|
},
|
|
getAvailablePrevNodes() {
|
|
return []
|
|
},
|
|
getAvailableNextNodes() {
|
|
return []
|
|
},
|
|
}
|
|
|
|
export default nodeDefault
|