UNPKG

sd-treeview

Version:

simple folders and files view in tree-view formate

19 lines (18 loc) 472 B
import React from "react"; import { FolderStructure } from "./Model/folder_structure"; import "./treeview.css"; interface IClick { name: string; address: string; } interface ITreeView { treeViewData: FolderStructure[]; click: (e: IClick) => void; expandIcon?: string; collapseIcon?: string; closeIcon?: string; openIcon?: string; clickBackground?: string; } export declare const Treeview: React.FunctionComponent<ITreeView>; export {};