DefinitelyTyped/types/readdir-stream/index.d.ts
2017-03-24 14:27:52 -07:00

11 lines
356 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/DefinitelyTyped/DefinitelyTyped
/// <reference types="node" />
declare function readdir(dir: string): NodeJS.ReadableStream;
export = readdir;