This ia a generic interface for all classes that have the task to generate the content of a directory.

interface IDirectory {
    createDirectoryContent(): Promise<EasyDirectoryContent>;
}

Implemented by

Methods