UNPKG

antd-meck

Version:

An enterprise-class UI design language and React-based implementation

21 lines (20 loc) 662 B
/// <reference types="react" /> import * as React from 'react'; import { TreeSelectProps } from './interface'; export { TreeData, TreeSelectProps } from './interface'; export default class TreeSelect extends React.Component<TreeSelectProps, any> { static TreeNode: any; static SHOW_ALL: any; static SHOW_PARENT: any; static SHOW_CHILD: any; static defaultProps: { prefixCls: string; transitionName: string; choiceTransitionName: string; showSearch: boolean; dropdownClassName: string; }; constructor(props: any); renderTreeSelect: (locale: any) => JSX.Element; render(): JSX.Element; }