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