mirror of
https://github.com/langgenius/dify.git
synced 2026-03-03 14:56:20 +08:00
15 lines
285 B
TypeScript
15 lines
285 B
TypeScript
import type { NodeDefault } from '../../types'
|
|
import type { ToolNodeType } from './types'
|
|
|
|
const nodeDefault: NodeDefault<ToolNodeType> = {
|
|
defaultValue: {},
|
|
getAvailablePrevNodes() {
|
|
return []
|
|
},
|
|
getAvailableNextNodes() {
|
|
return []
|
|
},
|
|
}
|
|
|
|
export default nodeDefault
|