UNPKG

419 BTypeScriptView Raw
1import * as React from 'react';
2
3interface WsReactTreeMenuItem {
4 child?: Array<WsReactTreeMenuItem>;
5 isOpen?: boolean;
6 title?: string;
7}
8
9interface WsReactTreeMenuProps {
10 addConditionForSelect?: (item: any) => {};
11 handlerClick?: (item: any) => {};
12 prefixClass?: string;
13 items?: Array<WsReactTreeMenuItem>;
14}
15
16export class WsReactTreeMenu extends React.Component<WsReactTreeMenuProps, any> {}
\No newline at end of file