bintastic
    Preparing search index...

    Interface DirJSON

    A recursive JSON representation of a directory. This representation includes both files, their contents and directories which can contain both files and directories.

     const files : DirJSON = {
    'index.js': 'content',
    'foo.txt': 'content',
    'folder': {
    'index.js': 'content',
    'apple.js': 'content',
    'other-folder': { }
    },
    }

    Indexable

    • [filename: string]: string | DirJSON | null