-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtypes-public.ts
107 lines (92 loc) · 2.5 KB
/
types-public.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
import * as fs from "fs";
/**
* Enhanced `fs.readdir()` options
*/
export interface Options {
/**
* Filter critiera. Can be a glob pattern, a regular expression, or a filter function.
*
* Defaults to returning all files.
*/
filter?: boolean | string | RegExp | FilterFunction;
/**
* The depth to crawl. Can be `true` to crawl indefinitely, a number to crawl only to that
* depth, or a filter (see the `filter` option) to crawl only directories that match the filter.
*
* Defaults to zero, which will not crawl subdirectories.
*/
deep?: boolean | number | string | RegExp | FilterFunction;
/**
* Return `Stats` objects instead of just path strings.
*
* Defaults to `false`.
*/
stats?: boolean;
/**
* Alias for the `stats` option. This property is supported for compatibility with the Node.js
* built-in `fs.readdir()` function.
*/
withFileTypes?: boolean;
/**
* The path separator to use.
*
* Defaults to "\" on Windows and "/" on other platforms.
*/
sep?: string;
/**
* The baase path to prefix results with.
*
* Defaults to an empty string, which means results will be relative to the directory path.
*/
basePath?: string;
/**
* Custom implementations of filesystem methods.
*
* Defaults to the Node "fs" module.
*/
fs?: Partial<FileSystem>;
}
/**
* Custom implementations of filesystem methods.
*/
export interface FileSystem {
/**
* Returns the names of files in a directory.
*/
readdir(path: string, callback: Callback<string[]>): void;
/**
* Returns filesystem information about a directory entry.
*/
stat(path: string, callback: Callback<fs.Stats>): void;
/**
* Returns filesystem information about a symlink.
*/
lstat(path: string, callback: Callback<fs.Stats>): void;
}
/**
* An `fs.Stats` object with additional information.
*/
export interface Stats extends fs.Stats {
/**
* The relative path of the file.
*
* NOTE: The value is affected by the `basePath` and `sep` options.
*/
path: string;
/**
* The depth of this entry, relative to the original directory.
*/
depth: number;
}
/**
* A function that determines whether a path should be included or not.
*/
export type FilterFunction = (stat: Stats) => unknown;
/**
* An error-first callback function.
*/
export type Callback<T> = (err: Error | null, result: T) => void;
/**
* The events that can be emitted by the stream interface.
*/
export type EventName = "error" | "file" | "directory" | "symlink";