UNPKG

decision-tree-maker

Version:

Decision tree maker lib

9 lines (8 loc) 292 B
import { FC } from 'react'; import { DecisionTree } from '../types'; interface NodePropertiesForm { node: DecisionTree; onPropertyChange: (value: string, property: string) => void; } declare const NodePropertiesForm: FC<NodePropertiesForm>; export default NodePropertiesForm;