added defs for some (stream) utils

This commit is contained in:
Bart van der Schoor
2014-05-26 14:31:30 +02:00
parent 568cb00761
commit cc82b36997
10 changed files with 163 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
// Type definitions for readdir-stream v0.1.0
// Project: https://github.com/logicalparadox/readdir-stream
// Definitions by: Bart van der Schoor <https://github.com/Bartvds>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
/// <reference path="../node/node.d.ts" />
declare module 'readdir-stream' {
function readdir(dir: string): NodeJS.ReadableStream;
export = readdir;
}