UNPKG

zents

Version:

ZenTS is a Node.js & TypeScript MVC-Framework for building rich web applications, released as free and open-source software under the MIT License. It is designed for building web applications with modern tools and design patterns.

7 lines (6 loc) 202 B
/** * Generator function to read the content of a directory recursively. * * @param dir A absolute path to a folder */ export declare function readDirRecursive(dir: string): AsyncGenerator<string>;