Represents a file node in the hierarchy (no content)

interface FileNode {
    name: string;
    path: string;
    type: "file";
}

Properties

Properties

name: string
path: string
type: "file"