UNPKG

decision-tree-maker

Version:

Decision tree maker lib

11 lines (10 loc) 366 B
import { FC } from 'react'; import { DecisionTree } from './types'; export interface DecisionTreeMakerProps { width?: number | string; height?: number | string; onChange?: (tree: DecisionTree) => void; selectedNodeStyle?: React.CSSProperties; } declare const DecisionTreeMaker: FC<DecisionTreeMakerProps>; export default DecisionTreeMaker;