data-cap
    Preparing search index...

    Interface BuildDirent

    One directory entry from BuildFileSystem.readdir -- the subset of Node's Dirent src/build/** reads.

    interface BuildDirent {
        isDirectory: () => boolean;
        isFile: () => boolean;
        name: string;
    }
    Index
    isDirectory: () => boolean
    isFile: () => boolean
    name: string