UNPKG

fs-tree-structure

Version:

Build filesystem tree structure from flat paths

7 lines (6 loc) 180 B
export type TreeStructure = { [key: string]: TreeStructure; }; export declare function makeTreeStructure(filePaths: string[], options?: { sort: boolean; }): TreeStructure;