UNPKG

decision-tree-maker

Version:

Decision tree maker lib

9 lines (8 loc) 316 B
import { FC } from 'react'; import { DecisionTree } from '../types'; interface ChildrenPropertiesFormProps { node: DecisionTree; onAttributeChange: (value: string, index: number) => void; } declare const ChildrenPropertiesForm: FC<ChildrenPropertiesFormProps>; export default ChildrenPropertiesForm;