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