Type Alias DirectoryTree<Type>

DirectoryTree<Type>: {
    [key: string]: Type | DirectoryTree;
}

A directory tree. The keys are the file names and the values are the file contents or nested directory trees.

Type Parameters

  • Type = unknown

    The type of the file contents.