-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathindex.d.ts
438 lines (412 loc) · 10.8 KB
/
index.d.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
import { EventEmitter } from "events";
import * as Bluebird from "bluebird";
declare module 'filehound' {
class FileHound extends EventEmitter {
constructor();
/**
* Static factory method to create an instance of FileHound
*
* @static
* @memberof FileHound
* @method create
* @returns FileHound instance
* @example
* import FileHound from 'filehound';
*
* const filehound = FileHound.create();
*/
public static create(): FileHound;
/**
* Returns all matches from one of more FileHound instances
*
* @static
* @memberof FileHound
* @method any
* @returns a promise containing all matches. If the Promise fulfils,
* the fulfilment value is an array of all matching files.
* @example
* import FileHound from 'filehound';
*
* const filehound = FileHound.any(fh1, fh2);
*/
public static any(...filehounds: FileHound[]): Bluebird<string[]>;
/**
* Filters by modifiction time
*
* @memberof FileHound
* @method modified
* @param { string } dateExpression - date expression
* @returns a FileHound instance
* @example
* import FileHound from 'filehound';
*
* const filehound = FileHound.create();
* filehound
* .modified("< 2 days")
* .find()
* .each(console.log);
*/
public modified(pattern: string): FileHound;
/**
* Filters by file access time
*
* @memberof FileHound
* @method accessed
* @param { string } dateExpression - date expression
* @returns a FileHound instance
* @example
* import FileHound from 'filehound';
*
* const filehound = FileHound.create();
* filehound
* .accessed("< 10 minutes")
* .find()
* .each(console.log);
*/
public accesssed(pattern: string): FileHound;
/**
* Filters change time
*
* @memberof FileHound
* @instance
* @method changed
* @param { string } dateExpression - date expression
* @returns a FileHound instance
* @example
* import FileHound from 'filehound';
*
* const filehound = FileHound.create();
* filehound
* .changed("< 10 minutes")
* .find()
* .each(console.log);
*/
public changed(pattern: string): FileHound;
/**
*
* @memberof FileHound
* @instance
* @method addFilter
* @param { function } function - custom filter function
* @returns a FileHound instance
* @example
* import FileHound from 'filehound';
*
* const filehound = FileHound.create();
* filehound
* .addFilter(customFilter)
* .find()
* .each(console.log);
*/
public addFilter(filter: (...args: any[]) => boolean): FileHound;
/**
* Defines the search paths
*
* @memberof FileHound
* @instance
* @method paths
* @param { array } path - array of paths
* @returns a FileHound instance
* @example
* import FileHound from 'filehound';
*
* const filehound = FileHound.create();
* filehound
* .paths("/tmp", "/etc") // or ["/tmp", "/etc"]
* .find()
* .each(console.log);
*/
public paths(...paths: string[] | [string[]]): FileHound;
/**
* Define the search path
*
* @memberof FileHound
* @instance
* @method path
* @param { string } path - path
* @returns a FileHound instance
* @example
* import FileHound from 'filehound';
*
* const filehound = FileHound.create();
* filehound
* .path("/tmp")
* .find()
* .each(console.log);
*/
public path(path: string): FileHound;
/**
* Ignores files or sub-directories matching pattern
*
* @memberof FileHound
* @instance
* @method discard
* @param { string | array } regex - regex or array of regex
* @returns a FileHound instance
* @example
* import FileHound from 'filehound';
*
* const filehound = FileHound.create();
* filehound
* .discard("*.tmp*")
* .find()
* .each(console.log);
*/
public discard(regex: string | string[]): FileHound;
/**
* Filter on file extension
*
* @memberof FileHound
* @instance
* @method ext
* @param { string | array } extensions - extension or an array of extensions
* @returns a FileHound instance
* @example
* import FileHound from 'filehound';
*
* let filehound = FileHound.create();
* filehound
* .ext(".json")
* .find()
* .each(console.log);
*
* // array of extensions to filter by
* filehound = FileHound.create();
* filehound
* .ext([".json", ".txt"])
* .find()
* .each(console.log);
*
* // supports var args
* filehound = FileHound.create();
* filehound
* .ext(".json", ".txt")
* .find()
* .each(console.log);
*/
public ext(extensions: string | string[]): FileHound;
/**
* Filter by file size
*
* @memberof FileHound
* @instance
* @method size
* @param { string } sizeExpression - a size expression
* @returns a FileHound instance
* @example
* import FileHound from 'filehound';
*
* const filehound = FileHound.create();
* filehound
* .size("<10kb")
* .find()
* .each(console.log);
*/
public size(sizeExpression: string): FileHound;
/**
* Filter by zero length files
*
* @memberof FileHound
* @instance
* @method isEmpty
* @param { string } path - path
* @returns a FileHound instance
* @example
* import FileHound from 'filehound';
*
* const filehound = FileHound.create();
* filehound
* .ext('txt')
* .isEmpty()
* .find()
* .each(console.log);
*/
public isEmpty(path?: string): FileHound;
/**
* Filter by a file glob
*
* @memberof FileHound
* @instance
* @method glob
* @param { array } glob - array of globs
* @returns a FileHound instance
* @example
* import FileHound from 'filehound';
*
* const filehound = FileHound.create();
* filehound
* .glob(['*tmp*']) // .glob('*tmp*') || .glob('*tmp1*','*tmp2*')
* .find()
* .each(console.log); // array of files names all containing 'tmp'
*/
public glob(...glob: string[]): FileHound;
/**
* Same as glob
* @see glob
*/
public match(...globPatterns: string[]): FileHound;
/**
* Negates filters
*
* @memberof FileHound
* @instance
* @method not
* @param { string } glob - file glob
* @returns a FileHound instance
* @example
* import FileHound from 'filehound';
*
* const filehound = FileHound.create();
* filehound
* .not()
* .glob("*tmp*")
* .find()
* .each(console.log); // array of files names NOT containing 'tmp'
*/
public not(glob?: string): FileHound;
/**
* Filter to ignore hidden files
*
* @memberof FileHound
* @instance
* @method ignoreHiddenFiles
* @returns a FileHound instance
* @example
* import FileHound from 'filehound';
*
* const filehound = FileHound.create();
* filehound
* .ignoreHiddenFiles()
* .find()
* .each(console.log); // array of files names that are not hidden files
*/
public ignoreHiddenFiles(): FileHound;
/**
* Ignore hidden directories
*
* @memberof FileHound
* @instance
* @method ignoreHiddenDirectories
* @returns a FileHound instance
* @example
* import FileHound from 'filehound';
*
* const filehound = FileHound.create();
* filehound
* .ignoreHiddenDirectories()
* .find()
* .each(console.log); // array of files names that are not hidden directories
*/
public ignoreHiddenDirectories(): FileHound;
/**
* Include file stats
*
* @memberof FileHound
* @instance
* @method includeFileStats
* @returns a FileHound instance
* @example
* import FileHound from 'filehound';
*
* const filehound = FileHound.create();
* filehound
* .includeFileStats()
* .find()
* .each(console.log); // array of file objects containing `path` and `stats` properties
*/
public includeFileStats(): FileHound;
/**
* Find sub-directories
*
* @memberof FileHound
* @instance
* @method directory
* @returns a FileHound instance
* @example
* import FileHound from 'filehound';
*
* const filehound = FileHound.create();
* filehound
* .directory()
* .find()
* .each(console.log); // array of matching sub-directories
*/
public directory(): FileHound;
/**
* Find sockets
*
* @memberof FileHound
* @instance
* @method socket
* @returns a FileHound instance
* @example
* import FileHound from 'filehound';
*
* const filehound = FileHound.create();
* filehound
* .socket()
* .find()
* .each(console.log); // array of matching sockets
*/
public socket(): FileHound;
/**
* Specify the directory search depth. If set to zero, recursive searching
* will be disabled
*
* @memberof FileHound
* @instance
* @method depth
* @returns a FileHound instance
* @example
* import FileHound from 'filehound';
*
* const filehound = FileHound.create();
* filehound
* .depth(0)
* .find()
* .each(console.log); // array of files names only in the current directory
*/
public depth(depth: number): FileHound;
/**
* Asynchronously executes a file search.
*
* @memberof FileHound
* @instance
* @method find
* @param {function} function - Optionally accepts a callback function
* @returns Returns a Promise of all matches. If the Promise fulfils,
* the fulfilment value is an array of all matching files
* @example
* import FileHound from 'filehound';
*
* const filehound = FileHound.create();
* filehound
* .find()
* .each(console.log);
*
* // using a callback
* filehound
* .find((err, files) => {
* if (err) return console.error(err);
* console.log(files);
* });
*/
public find(callback?: (err: Error, files: string[]) => void): Bluebird<string[]>;
/**
* Synchronously executes a file search.
*
* @memberof FileHound
* @instance
* @method findSync
* @returns Returns an array of all matching files
* @example
* import FileHound from 'filehound';
*
* const filehound = FileHound.create();
* const files = filehound.findSync();
* console.log(files);
*/
public findSync(): string[];
}
export function create(): FileHound;
}