UNPKG

496 BTypeScriptView Raw
1import * as React from 'react';
2export interface TreeViewListProps extends React.HTMLProps<HTMLUListElement> {
3 /** Flag indicating if the tree view is nested under another tree view */
4 isNested?: boolean;
5 /** Toolbar to display above the tree view */
6 toolbar?: React.ReactNode;
7 /** Child nodes of the current tree view */
8 children: React.ReactNode;
9}
10export declare const TreeViewList: React.FunctionComponent<TreeViewListProps>;
11//# sourceMappingURL=TreeViewList.d.ts.map
\No newline at end of file