Search
    Preparing search index...

    Тип компонента дерева

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

    Constructors

    Properties

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