/npm-glob-stream

Typings for glob-stream ☁

Primary LanguageTypeScriptMIT LicenseMIT

Typed glob-stream

Greenkeeper badge Build Status

Typescript Typings for glob-stream.

Installation

typings install --save glob-stream

Usage

read = gs.create('./files/**/*.coffee',  { /* options */ });

read.on('data', (file: gs.Element) => {
  console.log(file.path, file.base, file.cwd);
});

Contributing

You can run them the tests with npm run build and npm run test.


_Based on typings by Bart van der Schoor