Represents a chunked directory node with its children

interface ChunkedDirectoryNode {
    children: ChunkedHierarchicalNode[];
    name: string;
    path: string;
    type: "directory";
}

Properties

Properties

name: string
path: string
type: "directory"