mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
12 lines
374 B
TypeScript
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;
|