@aliretail/react-materials-components
Version:
15 lines (14 loc) • 439 B
TypeScript
import * as React from 'react';
import { IComponentProps } from './type';
interface IComState {
activeTab: string;
}
declare class TreeManager extends React.Component<IComponentProps, IComState> {
static Tree: (props: Omit<IComponentProps, 'tabList'> & {
modelType: string;
}) => JSX.Element;
constructor(props: any);
onChangeTab: (key: string) => void;
render(): JSX.Element;
}
export default TreeManager;