whet 0.0.34 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (81) hide show
  1. package/bin/Reflect.d.ts +31 -12
  2. package/bin/Reflect.js +46 -19
  3. package/bin/commander/LiteralUnion.d.ts +2 -0
  4. package/bin/commander/OptionValueSource.d.ts +2 -1
  5. package/bin/commander/OutputConfiguration.d.ts +3 -0
  6. package/bin/genes/Register.d.ts +2 -0
  7. package/bin/genes/Register.js +15 -11
  8. package/bin/genes/util/EsMap.js +2 -1
  9. package/bin/haxe/Exception.js +6 -1
  10. package/bin/haxe/ValueException.js +3 -2
  11. package/bin/haxe/ds/List.js +7 -2
  12. package/bin/haxe/ds/ObjectMap.js +2 -2
  13. package/bin/haxe/ds/StringMap.js +2 -2
  14. package/bin/haxe/exceptions/NotImplementedException.js +2 -2
  15. package/bin/haxe/exceptions/PosException.js +3 -2
  16. package/bin/haxe/io/Bytes.js +3 -1
  17. package/bin/haxe/io/BytesBuffer.js +6 -1
  18. package/bin/haxe/io/BytesOutput.js +2 -1
  19. package/bin/haxe/io/Output.js +1 -0
  20. package/bin/haxe/iterators/ArrayIterator.js +3 -1
  21. package/bin/haxe/zip/Writer.js +3 -1
  22. package/bin/js/lib/ConcatArray.d.ts +6 -0
  23. package/bin/js/lib/IRegExp.d.ts +53 -0
  24. package/bin/js/lib/IterableIterator.d.ts +8 -0
  25. package/bin/js/lib/IteratorResult.d.ts +2 -0
  26. package/bin/js/lib/IteratorReturnResult.d.ts +5 -0
  27. package/bin/js/lib/IteratorYieldResult.d.ts +5 -0
  28. package/bin/js/lib/RegExpExecArray.d.ts +137 -0
  29. package/bin/minimatch/MMRegExp.d.ts +55 -0
  30. package/bin/minimatch/MinimatchOptions.d.ts +102 -0
  31. package/bin/minimatch/ParseReturn.d.ts +2 -0
  32. package/bin/minimatch/ParseReturnFiltered.d.ts +2 -0
  33. package/bin/minimatch/Platform.d.ts +2 -0
  34. package/bin/pino_pretty/PrettyOptions.d.ts +2 -2
  35. package/bin/pino_pretty/default_/MessageFormatFunc.d.ts +1 -2
  36. package/bin/pino_pretty/default_/Prettifier.d.ts +2 -0
  37. package/bin/pino_pretty/pinopretty/PrettyOptions.d.ts +118 -0
  38. package/bin/sys/FileStat.d.ts +50 -0
  39. package/bin/whet/ConfigStore.d.ts +32 -0
  40. package/bin/whet/ConfigStore.js +342 -0
  41. package/bin/whet/Project.d.ts +41 -4
  42. package/bin/whet/Project.js +191 -3
  43. package/bin/whet/Source.d.ts +7 -1
  44. package/bin/whet/Source.js +40 -3
  45. package/bin/whet/SourceHash.js +18 -10
  46. package/bin/whet/Stone.d.ts +60 -9
  47. package/bin/whet/Stone.js +180 -18
  48. package/bin/whet/Whet.d.ts +0 -1
  49. package/bin/whet/Whet.js +23 -12
  50. package/bin/whet/cache/BaseCache.d.ts +23 -0
  51. package/bin/whet/cache/BaseCache.js +93 -1
  52. package/bin/whet/cache/CacheManager.d.ts +2 -0
  53. package/bin/whet/cache/CacheManager.js +38 -2
  54. package/bin/whet/cache/FileCache.d.ts +10 -2
  55. package/bin/whet/cache/FileCache.js +144 -42
  56. package/bin/whet/cache/HashCache.js +2 -1
  57. package/bin/whet/cache/MemoryCache.d.ts +3 -0
  58. package/bin/whet/cache/MemoryCache.js +53 -2
  59. package/bin/whet/magic/MinimatchType.d.ts +1 -1
  60. package/bin/whet/magic/MinimatchType.js +3 -3
  61. package/bin/whet/magic/RoutePathType.js +1 -1
  62. package/bin/whet/route/OutputFilterMatcher.js +2 -2
  63. package/bin/whet/route/RouteResult.d.ts +16 -0
  64. package/bin/whet/route/RouteResult.js +37 -4
  65. package/bin/whet/route/Router.d.ts +27 -1
  66. package/bin/whet/route/Router.js +151 -40
  67. package/bin/whet/stones/Files.d.ts +6 -1
  68. package/bin/whet/stones/Files.js +3 -2
  69. package/bin/whet/stones/JsonStone.d.ts +6 -1
  70. package/bin/whet/stones/JsonStone.js +3 -2
  71. package/bin/whet/stones/RemoteFile.d.ts +7 -2
  72. package/bin/whet/stones/RemoteFile.js +7 -4
  73. package/bin/whet/stones/Zip.d.ts +6 -1
  74. package/bin/whet/stones/Zip.js +2 -2
  75. package/bin/whet/stones/haxe/HaxeBuild.d.ts +7 -1
  76. package/bin/whet/stones/haxe/HaxeBuild.js +8 -6
  77. package/bin/whet/stones/haxe/Hxml.d.ts +7 -1
  78. package/bin/whet/stones/haxe/Hxml.js +7 -5
  79. package/bin/whet.d.ts +1 -2
  80. package/bin/whet.js +1 -1
  81. package/package.json +9 -10
@@ -0,0 +1,137 @@
1
+ import {IterableIterator} from "./IterableIterator"
2
+ import {ConcatArray} from "./ConcatArray"
3
+ import {Rest} from "../../haxe/extern/Rest"
4
+
5
+ export type RegExpExecArray = {
6
+ /**
7
+ Combines two or more arrays.
8
+
9
+ Combines two or more arrays.
10
+ */
11
+ concat: (...items: Rest<ConcatArray<string>>) => string[],
12
+ /**
13
+ Returns the this object after copying a section of the array identified by start and end
14
+ to the same array starting at position target
15
+ */
16
+ copyWithin: (target: number, start: number, end?: number) => RegExpExecArray,
17
+ /**
18
+ Returns an iterable of key, value pairs for every entry in the array
19
+ */
20
+ entries: () => IterableIterator<any[]>,
21
+ /**
22
+ Determines whether all the members of an array satisfy the specified test.
23
+ */
24
+ every: (callbackfn: ((value: string, index: number, array: string[]) => any), thisArg?: any) => boolean,
25
+ /**
26
+ Returns the this object after filling the section identified by start and end with value
27
+ */
28
+ fill: (value: string, start?: number, end?: number) => RegExpExecArray,
29
+ /**
30
+ Returns the elements of an array that meet the condition specified in a callback function.
31
+
32
+ Returns the elements of an array that meet the condition specified in a callback function.
33
+ */
34
+ filter: <S>(callbackfn: ((value: string, index: number, array: string[]) => boolean), thisArg?: any) => S[],
35
+ /**
36
+ Returns the value of the first element in the array where predicate is true, and undefined
37
+ otherwise.
38
+ */
39
+ find: <S>(predicate: ((value: string, index: number, obj: string[]) => boolean), thisArg?: any) => null | S,
40
+ /**
41
+ Returns the index of the first element in the array where predicate is true, and -1
42
+ otherwise.
43
+ */
44
+ findIndex: (predicate: ((value: string, index: number, obj: string[]) => any), thisArg?: any) => number,
45
+ /**
46
+ Performs the specified action for each element in an array.
47
+ */
48
+ forEach: (callbackfn: ((value: string, index: number, array: string[]) => void), thisArg?: any) => void,
49
+ index: number,
50
+ /**
51
+ Returns the index of the first occurrence of a value in an array.
52
+ */
53
+ indexOf: (searchElement: string, fromIndex?: number) => number,
54
+ input: string,
55
+ /**
56
+ Adds all the elements of an array separated by the specified separator string.
57
+ */
58
+ join: (separator: string) => string,
59
+ /**
60
+ Returns an iterable of keys in the array
61
+ */
62
+ keys: () => IterableIterator<number>,
63
+ /**
64
+ Returns the index of the last occurrence of a specified value in an array.
65
+ */
66
+ lastIndexOf: (searchElement: string, fromIndex?: number) => number,
67
+ /**
68
+ Gets or sets the length of the array. This is a number one higher than the highest element defined in an array.
69
+ */
70
+ length: number,
71
+ /**
72
+ Calls a defined callback function on each element of an array, and returns an array that contains the results.
73
+ */
74
+ map: <U>(callbackfn: ((value: string, index: number, array: string[]) => U), thisArg?: any) => U[],
75
+ /**
76
+ Removes the last element from an array and returns it.
77
+ */
78
+ pop: () => null | string,
79
+ /**
80
+ Appends new elements to an array, and returns the new length of the array.
81
+ */
82
+ push: (...items: Rest<string>) => number,
83
+ /**
84
+ Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.
85
+
86
+ Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.
87
+ */
88
+ reduce: (callbackfn: ((previousValue: string, currentValue: string, currentIndex: number, array: string[]) => string)) => string,
89
+ /**
90
+ Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.
91
+
92
+ Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.
93
+ */
94
+ reduceRight: (callbackfn: ((previousValue: string, currentValue: string, currentIndex: number, array: string[]) => string)) => string,
95
+ /**
96
+ Reverses the elements in an Array.
97
+ */
98
+ reverse: () => string[],
99
+ /**
100
+ Removes the first element from an array and returns it.
101
+ */
102
+ shift: () => null | string,
103
+ /**
104
+ Returns a section of an array.
105
+ */
106
+ slice: (start: number, end?: number) => string[],
107
+ /**
108
+ Determines whether the specified callback function returns true for any element of an array.
109
+ */
110
+ some: (callbackfn: ((value: string, index: number, array: string[]) => any), thisArg?: any) => boolean,
111
+ /**
112
+ Sorts an array.
113
+ */
114
+ sort: (compareFn: ((a: string, b: string) => number)) => RegExpExecArray,
115
+ /**
116
+ Removes elements from an array and, if necessary, inserts new elements in their place, returning the deleted elements.
117
+
118
+ Removes elements from an array and, if necessary, inserts new elements in their place, returning the deleted elements.
119
+ */
120
+ splice: (start: number, deleteCount?: number) => string[],
121
+ /**
122
+ Returns a string representation of an array. The elements are converted to string using their toLocalString methods.
123
+ */
124
+ toLocaleString: () => string,
125
+ /**
126
+ Returns a string representation of an array.
127
+ */
128
+ toString: () => string,
129
+ /**
130
+ Inserts new elements at the start of an array.
131
+ */
132
+ unshift: (...items: Rest<string>) => number,
133
+ /**
134
+ Returns an iterable of values in the array
135
+ */
136
+ values: () => IterableIterator<string>
137
+ }
@@ -0,0 +1,55 @@
1
+ import {RegExpExecArray} from "../js/lib/RegExpExecArray"
2
+
3
+ export type MMRegExp = {
4
+ _glob?: null | string,
5
+ _src?: null | string,
6
+ compile: () => RegExp,
7
+ /**
8
+ Executes a search on a string using a regular expression pattern, and returns an array containing the results of that search.
9
+ */
10
+ exec: (string: string) => null | RegExpExecArray,
11
+ /**
12
+ Returns a string indicating the flags of the regular expression in question. This field is read-only.
13
+ The characters in this string are sequenced and concatenated in the following order:
14
+
15
+ - "g" for global
16
+ - "i" for ignoreCase
17
+ - "m" for multiline
18
+ - "u" for unicode
19
+ - "y" for sticky
20
+
21
+ If no flags are set, the value is the empty string.
22
+ */
23
+ flags: string,
24
+ /**
25
+ Returns a Boolean value indicating the state of the global flag (g) used with a regular expression. Default is false. Read-only.
26
+ */
27
+ global: boolean,
28
+ /**
29
+ Returns a Boolean value indicating the state of the ignoreCase flag (i) used with a regular expression. Default is false. Read-only.
30
+ */
31
+ ignoreCase: boolean,
32
+ lastIndex: number,
33
+ /**
34
+ Returns a Boolean value indicating the state of the multiline flag (m) used with a regular expression. Default is false. Read-only.
35
+ */
36
+ multiline: boolean,
37
+ /**
38
+ Returns a copy of the text of the regular expression pattern. Read-only. The regExp argument is a Regular expression object. It can be a variable name or a literal.
39
+ */
40
+ source: string,
41
+ /**
42
+ Returns a Boolean value indicating the state of the sticky flag (y) used with a regular
43
+ expression. Default is false. Read-only.
44
+ */
45
+ sticky: boolean,
46
+ /**
47
+ Returns a Boolean value that indicates whether or not a pattern exists in a searched string.
48
+ */
49
+ test: (string: string) => boolean,
50
+ /**
51
+ Returns a Boolean value indicating the state of the Unicode flag (u) used with a regular
52
+ expression. Default is false. Read-only.
53
+ */
54
+ unicode: boolean
55
+ }
@@ -0,0 +1,102 @@
1
+
2
+ export type MinimatchOptions = {
3
+ /**
4
+ inverse of {@link MinimatchOptions.windowsPathsNoEscape}
5
+ */
6
+ allowWindowsEscape?: null | boolean,
7
+ /**
8
+ max number of `{...}` patterns to expand. Default 100_000.
9
+ */
10
+ braceExpandMax?: null | number,
11
+ /**
12
+ print LOTS of debugging output
13
+ */
14
+ debug?: null | boolean,
15
+ /**
16
+ allow matches that start with `.` even if the pattern does not
17
+ */
18
+ dot?: null | boolean,
19
+ /**
20
+ invert the results of negated matches
21
+ */
22
+ flipNegate?: null | boolean,
23
+ /**
24
+ consider braces to be "magic" for the purpose of `hasMagic`
25
+ */
26
+ magicalBraces?: null | boolean,
27
+ /**
28
+ If set, then patterns without slashes will be matched
29
+ against the basename of the path if it contains slashes.
30
+ For example, `a?b` would match the path `/xyz/123/acb`, but
31
+ not `/xyz/acb/123`.
32
+ */
33
+ matchBase?: null | boolean,
34
+ /**
35
+ do not expand `{x,y}` style braces
36
+ */
37
+ nobrace?: null | boolean,
38
+ /**
39
+ ignore case
40
+ */
41
+ nocase?: null | boolean,
42
+ /**
43
+ ignore case only in wildcard patterns
44
+ */
45
+ nocaseMagicOnly?: null | boolean,
46
+ /**
47
+ do not treat patterns starting with `#` as a comment
48
+ */
49
+ nocomment?: null | boolean,
50
+ /**
51
+ do not expand extglobs like `+(a|b)`
52
+ */
53
+ noext?: null | boolean,
54
+ /**
55
+ treat `**` the same as `*`
56
+ */
57
+ noglobstar?: null | boolean,
58
+ /**
59
+ do not treat patterns starting with `!` as a negation
60
+ */
61
+ nonegate?: null | boolean,
62
+ /**
63
+ return the pattern if nothing matches
64
+ */
65
+ nonull?: null | boolean,
66
+ /**
67
+ A number indicating the level of optimization that should be done
68
+ to the pattern prior to parsing and using it for matches.
69
+ */
70
+ optimizationLevel?: null | number,
71
+ /**
72
+ Compare a partial path to a pattern. As long as the parts
73
+ of the path that are present are not contradicted by the
74
+ pattern, it will be treated as a match. This is useful in
75
+ applications where you're walking through a folder structure,
76
+ and don't yet have the full path, but want to ensure that you
77
+ do not walk down paths that can never be a match.
78
+ */
79
+ partial?: null | boolean,
80
+ /**
81
+ operating system platform
82
+ */
83
+ platform?: any,
84
+ /**
85
+ do not collapse multiple `/` into a single `/`
86
+ */
87
+ preserveMultipleSlashes?: null | boolean,
88
+ /**
89
+ When a pattern starts with a UNC path or drive letter, and in
90
+ `nocase:true` mode, do not convert the root portions of the
91
+ pattern into a case-insensitive regular expression, and instead
92
+ leave them as strings.
93
+
94
+ This is the default when the platform is `win32` and
95
+ `nocase:true` is set.
96
+ */
97
+ windowsNoMagicRoot?: null | boolean,
98
+ /**
99
+ treat `\\` as a path separator, not an escape character
100
+ */
101
+ windowsPathsNoEscape?: null | boolean
102
+ }
@@ -0,0 +1,2 @@
1
+
2
+ export type ParseReturn = any
@@ -0,0 +1,2 @@
1
+
2
+ export type ParseReturnFiltered = any
@@ -0,0 +1,2 @@
1
+
2
+ export type Platform = string
@@ -1,3 +1,4 @@
1
+ import {Prettifier} from "./default_/Prettifier"
1
2
 
2
3
  export type PrettyOptions = {
3
4
  /**
@@ -18,8 +19,7 @@ export type PrettyOptions = {
18
19
  and value is the prettify function itself.
19
20
  For example, if a log line contains a query property, you can specify a prettifier for it:
20
21
  */
21
- customPrettifiers?: null | {
22
- },
22
+ customPrettifiers?: null | {[key: string]: Prettifier},
23
23
  /**
24
24
  The file, file descriptor, or stream to write to. Defaults to 1 (stdout).
25
25
  */
@@ -1,3 +1,2 @@
1
1
 
2
- export type MessageFormatFunc = ((log: {
3
- }, messageKey: string, levelLabel: string) => string)
2
+ export type MessageFormatFunc = ((log: {[key: string]: any}, messageKey: string, levelLabel: string) => string)
@@ -0,0 +1,2 @@
1
+
2
+ export type Prettifier = ((inputData: any) => string)
@@ -0,0 +1,118 @@
1
+
2
+ export type PrettyOptions = {
3
+ /**
4
+ Opens the file with the 'a' flag.
5
+ */
6
+ append?: null | boolean,
7
+ /**
8
+ If set to true, will add color information to the formatted output message.
9
+ */
10
+ colorize?: null | boolean,
11
+ /**
12
+ If set to false while `colorize` is `true`, will output JSON objects without color.
13
+ */
14
+ colorizeObjects?: null | boolean,
15
+ /**
16
+ Appends carriage return and line feed, instead of just a line feed, to the formatted log line.
17
+ */
18
+ crlf?: null | boolean,
19
+ /**
20
+ Change the level colors to an user custom preset.
21
+
22
+ Can be a CSV string in 'level_name:color_value' format or an object.
23
+ Also supports 'default' as level_name for fallback color.
24
+ */
25
+ customColors?: null | any,
26
+ /**
27
+ Change the level names and values to an user custom preset.
28
+
29
+ Can be a CSV string in 'level_name:level_value' format or an object.
30
+ */
31
+ customLevels?: null | any,
32
+ /**
33
+ Provides the ability to add a custom prettify function for specific log properties.
34
+ `customPrettifiers` is an object, where keys are log properties that will be prettified
35
+ and value is the prettify function itself.
36
+ For example, if a log line contains a query property, you can specify a prettifier for it:
37
+ */
38
+ customPrettifiers?: null | any,
39
+ /**
40
+ The file, file descriptor, or stream to write to. Defaults to 1 (stdout).
41
+ */
42
+ destination?: null | any,
43
+ /**
44
+ Define the log keys that are associated with error like objects.
45
+ */
46
+ errorLikeObjectKeys?: null | string[],
47
+ /**
48
+ When formatting an error object, display this list of properties.
49
+ The list should be a comma separated list of properties.
50
+ */
51
+ errorProps?: null | string,
52
+ /**
53
+ Hide objects from output (but not error object).
54
+ */
55
+ hideObject?: null | boolean,
56
+ /**
57
+ Ignore one or several keys.
58
+ Will be overridden by the option include if include is presented.
59
+ */
60
+ ignore?: null | string,
61
+ /**
62
+ Include one or several keys.
63
+ */
64
+ include?: null | string,
65
+ /**
66
+ If set to true, it will print the name of the log level as the first field in the log line.
67
+ */
68
+ levelFirst?: null | boolean,
69
+ /**
70
+ Define the key that contains the level of the log.
71
+ */
72
+ levelKey?: null | string,
73
+ /**
74
+ Output the log level using the specified label.
75
+ */
76
+ levelLabel?: null | string,
77
+ /**
78
+ Format output of message, e.g. {level} - {pid} will output message: INFO - 1123
79
+ */
80
+ messageFormat?: null | any,
81
+ /**
82
+ The key in the JSON object to use as the highlighted message.
83
+ */
84
+ messageKey?: null | string,
85
+ /**
86
+ The minimum log level to include in the output.
87
+ */
88
+ minimumLevel?: null | any,
89
+ /**
90
+ Ensure directory for destination file exists.
91
+ */
92
+ mkdir?: null | boolean,
93
+ /**
94
+ Print each log message on a single line (errors will still be multi-line).
95
+ */
96
+ singleLine?: null | boolean,
97
+ /**
98
+ Makes messaging synchronous.
99
+ */
100
+ sync?: null | boolean,
101
+ /**
102
+ The key in the JSON object to use for timestamp display.
103
+ */
104
+ timestampKey?: null | string,
105
+ /**
106
+ Translate the epoch time value into a human readable date and time string. This flag also can set the format
107
+ string to apply when translating the date to human readable format. For a list of available pattern letters
108
+ see the {@link https://www.npmjs.com/package/dateformat|dateformat documentation}.
109
+ - The default format is `yyyy-mm-dd HH:MM:ss.l o` in UTC.
110
+ - Requires a `SYS:` prefix to translate time to the local system's timezone. Use the shortcut `SYS:standard`
111
+ to translate time to `yyyy-mm-dd HH:MM:ss.l o` in system timezone.
112
+ */
113
+ translateTime?: null | any,
114
+ /**
115
+ Only use custom levels and colors (if provided); else fallback to default levels and colors.
116
+ */
117
+ useOnlyCustomProps?: null | boolean
118
+ }
@@ -0,0 +1,50 @@
1
+
2
+ /**
3
+ File information, as given by `sys.FileSystem.stat`.
4
+ */
5
+ export type FileStat = {
6
+ /**
7
+ The last access time for the file (when enabled by the file system).
8
+ */
9
+ atime: Date,
10
+ /**
11
+ The creation time for the file (not all file systems support this).
12
+ */
13
+ ctime: Date,
14
+ /**
15
+ The device on which stat resides.
16
+ */
17
+ dev: number,
18
+ /**
19
+ The user group id for the file owner.
20
+ */
21
+ gid: number,
22
+ /**
23
+ The inode number for stat.
24
+ */
25
+ ino: number,
26
+ /**
27
+ The permission bits of stat. The meaning of the bits is platform dependent.
28
+ */
29
+ mode: number,
30
+ /**
31
+ The last modification time for the file.
32
+ */
33
+ mtime: Date,
34
+ /**
35
+ The number of hard links to stat.
36
+ */
37
+ nlink: number,
38
+ /**
39
+ The device type on which stat resides (special files only).
40
+ */
41
+ rdev: number,
42
+ /**
43
+ The size of the file, in bytes.
44
+ */
45
+ size: number,
46
+ /**
47
+ The user id for the file owner.
48
+ */
49
+ uid: number
50
+ }
@@ -0,0 +1,32 @@
1
+ import {AnyStone} from "./Stone"
2
+
3
+ export declare class ConfigStore {
4
+ constructor(path: string)
5
+ path: string
6
+ protected data: null | {[key: string]: any}
7
+ protected persistedData: null | {[key: string]: any}
8
+ protected mtimeMs: null | number
9
+ protected size: null | number
10
+ protected loadPromise: null | Promise<any>
11
+ protected baselines: WeakMap<{[key: string]: any}>
12
+ protected appliedPatches: WeakMap<{[key: string]: any}>
13
+ ensureApplied(stone: AnyStone): Promise<any>
14
+ setPatch(stone: AnyStone, patch: any): Promise<any>
15
+ getEntryById(stoneId: string): any
16
+ setEntry(stoneId: string, patch: any): void
17
+ clearEntry(stoneId: string): void
18
+ flush(): Promise<any>
19
+ isDirty(stoneId?: null | string): boolean
20
+ protected reload(): Promise<any>
21
+ protected doReload(): Promise<any>
22
+ protected statFile(): Promise<any>
23
+ protected readAndParse(): Promise<any>
24
+ protected writeFile(): Promise<any>
25
+ protected getEntry(stone: AnyStone): null | {[key: string]: any}
26
+ protected captureBaseline(stone: AnyStone): void
27
+ protected applyPatch(stone: AnyStone): void
28
+ static BASE_CONFIG_KEYS: string[]
29
+ static isJsonSerializable(val: any): boolean
30
+ static deepClone(val: any): any
31
+ static deepMerge(base: any, patch: any): any
32
+ }