UNPKG

yg-my-lib

Version:

这是一个测试的库,未正式使用

15 lines (14 loc) 348 B
import { default as React } from 'react'; export interface IDynamicTreeProps { data: ITreeData[]; checkable?: boolean; onCheck?: (checkedKeys: string[]) => void; } export interface ITreeData { key: string; title: string; icon?: React.ReactNode; children?: ITreeData[]; checkable?: boolean; expanded?: boolean; }