1 | "use strict";
|
2 | Object.defineProperty(exports, "__esModule", { value: true });
|
3 | var ReadDirOptions;
|
4 | (function (ReadDirOptions) {
|
5 | |
6 |
|
7 |
|
8 | ReadDirOptions[ReadDirOptions["ABSOLUTE_PATHS"] = 1] = "ABSOLUTE_PATHS";
|
9 | |
10 |
|
11 |
|
12 | ReadDirOptions[ReadDirOptions["CASELESS_SORT"] = 2] = "CASELESS_SORT";
|
13 | |
14 |
|
15 |
|
16 | ReadDirOptions[ReadDirOptions["CASE_SORT"] = 4] = "CASE_SORT";
|
17 | |
18 |
|
19 |
|
20 | ReadDirOptions[ReadDirOptions["INCLUDE_DIRECTORIES"] = 8] = "INCLUDE_DIRECTORIES";
|
21 | |
22 |
|
23 |
|
24 | ReadDirOptions[ReadDirOptions["INCLUDE_HIDDEN"] = 16] = "INCLUDE_HIDDEN";
|
25 | |
26 |
|
27 |
|
28 | ReadDirOptions[ReadDirOptions["NON_RECURSIVE"] = 32] = "NON_RECURSIVE";
|
29 | |
30 |
|
31 |
|
32 |
|
33 | ReadDirOptions[ReadDirOptions["IGNORE_ERRORS"] = 64] = "IGNORE_ERRORS";
|
34 | })(ReadDirOptions = exports.ReadDirOptions || (exports.ReadDirOptions = {}));
|
35 | exports.ABSOLUTE_PATHS = ReadDirOptions.ABSOLUTE_PATHS;
|
36 | exports.CASELESS_SORT = ReadDirOptions.CASELESS_SORT;
|
37 | exports.CASE_SORT = ReadDirOptions.CASE_SORT;
|
38 | exports.INCLUDE_DIRECTORIES = ReadDirOptions.INCLUDE_DIRECTORIES;
|
39 | exports.INCLUDE_HIDDEN = ReadDirOptions.INCLUDE_HIDDEN;
|
40 | exports.NON_RECURSIVE = ReadDirOptions.NON_RECURSIVE;
|
41 | exports.IGNORE_ERRORS = ReadDirOptions.IGNORE_ERRORS;
|
42 |
|
\ | No newline at end of file |