decision-tree-maker
Version:
Decision tree maker lib
9 lines (8 loc) • 316 B
TypeScript
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;