UNPKG

@materia/interfaces

Version:
12 lines (11 loc) 238 B
export interface ITreeFile { filename: string; path: string; fullpath: string; isDir: boolean; incomplete?: boolean; relativepath?: string; children?: ITreeFile[]; extension?: string; level?: number; }