Typescript Typings for glob-stream.
typings install --save glob-stream
read = gs.create('./files/**/*.coffee', { /* options */ });
read.on('data', (file: gs.Element) => {
console.log(file.path, file.base, file.cwd);
});
You can run them the tests with npm run build
and npm run test
.
_Based on typings by Bart van der Schoor