You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
374 B

/// <reference types="react" />
import { DataItem } from './PropsType';
export interface PropsType {
subMenuPrefixCls?: string;
radioPrefixCls?: string;
subMenuData: DataItem[];
showSelect: boolean;
onSel: (dataItem: DataItem) => void;
selItem: DataItem[];
multiSelect?: boolean;
}
export default function SubMenu(props: PropsType): JSX.Element;