DefinitelyTyped/types/fs-readdir-recursive/index.d.ts
2017-08-28 21:33:41 +03:00

12 lines
374 B
TypeScript

// Type definitions for fs-readdir-recursive 1.0
// Project: https://github.com/fs-utils/fs-readdir-recursive
// Definitions by: Paolo Scanferla <https://github.com/pscanf>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare function readdirRecursive(
path: string,
filter?: (path: string) => boolean
): string[];
export = readdirRecursive;