DefinitelyTyped/readdir-stream/readdir-stream.d.ts
2014-05-26 14:31:30 +02:00

12 lines
393 B
TypeScript

// 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;
}