mirror of https://github.com/langgenius/dify.git
18 lines
358 B
TypeScript
18 lines
358 B
TypeScript
import type { NodeDefault } from '../../types'
|
|
import type { VariableAssignerNodeType } from './types'
|
|
|
|
const nodeDefault: NodeDefault<VariableAssignerNodeType> = {
|
|
defaultValue: {
|
|
output_type: 'string',
|
|
variables: [],
|
|
},
|
|
getAvailablePrevNodes() {
|
|
return []
|
|
},
|
|
getAvailableNextNodes() {
|
|
return []
|
|
},
|
|
}
|
|
|
|
export default nodeDefault
|