Represents a directory node with embedded children

interface EmbeddedDirectoryNode {
    children: EmbeddedHierarchicalNode[];
    name: string;
    path: string;
    type: "directory";
}

Properties

Properties

name: string
path: string
type: "directory"