@bianic-ui/tree
Version:
description
10 lines (9 loc) • 361 B
TypeScript
import React from "react";
import { TreeMenuProps } from "react-simple-tree-menu";
import { BoxProps } from "@bianic-ui/core";
declare type Merge<M, N> = Omit<M, Extract<keyof M, keyof N>> & N;
export declare type TreeProps = Merge<BoxProps, TreeMenuProps>;
export declare class Tree extends React.Component<TreeProps> {
render(): JSX.Element;
}
export {};