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