interface TreeComponentType {
    new TreeComponentTypenew <T, K>(props: TreeProps<T, K>, context?: any): Component<TreeProps<T, K>, any, any>;
    childContextTypes?: ValidationMap<any>;
    contextType?: Context<any>;
    contextTypes?: ValidationMap<any>;
    defaultProps?: Partial<TreeProps<any, TreeNodeKeyType>>;
    displayName?: string;
    propTypes?: WeakValidationMap<TreeProps<any, TreeNodeKeyType>>;
}

Constructors

Properties

childContextTypes?: ValidationMap<any>
contextType?: Context<any>
contextTypes?: ValidationMap<any>
defaultProps?: Partial<TreeProps<any, TreeNodeKeyType>>
displayName?: string