UNPKG

@ucloud-fe/react-components

Version:
13 lines (12 loc) 288 B
import { ReactNode } from 'react'; export declare type Key = string; export interface LoadData { (expandedKeys: Key[]): Promise<void>; } export interface CascadeData { key: Key; title: ReactNode; children?: CascadeData[]; disabled?: boolean; isParent?: boolean; }