File: index.d.ts

package info (click to toggle)
node-fs-readdir-recursive 1.1.0%2B~1.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 136 kB
  • sloc: javascript: 125; makefile: 2
file content (11 lines) | stat: -rwxr-xr-x 403 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
// Type definitions for fs-readdir-recursive 1.1
// 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?: (name: string, index: number, dir: string) => boolean,
): string[];

export = readdirRecursive;