UNPKG

@ucloud-fe/react-components

Version:
14 lines (13 loc) 308 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; width?: number; }