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': { } }, } Copy
const files : DirJSON = { 'index.js': 'content', 'foo.txt': 'content', 'folder': { 'index.js': 'content', 'apple.js': 'content', 'other-folder': { } }, }
A recursive JSON representation of a directory. This representation includes both files, their contents and directories which can contain both files and directories.