@isdk/ai-tool 0.2.0 → 0.2.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 (248) hide show
  1. package/dist/chunk-TOUPOZHH.mjs +1 -0
  2. package/dist/funcs.d.mts +1 -1
  3. package/dist/funcs.d.ts +1 -1
  4. package/dist/funcs.js +1 -1
  5. package/dist/funcs.mjs +1 -1
  6. package/dist/{index-nP9lSU6E.d.mts → index-DUEs7T8M.d.mts} +2 -2
  7. package/dist/{index-nP9lSU6E.d.ts → index-DUEs7T8M.d.ts} +2 -2
  8. package/dist/index.d.mts +3 -3
  9. package/dist/index.d.ts +3 -3
  10. package/dist/index.js +1 -1
  11. package/dist/index.mjs +1 -1
  12. package/docs/README.md +5 -3
  13. package/docs/_media/CONTRIBUTING.md +18 -0
  14. package/docs/_media/LICENSE-MIT +22 -0
  15. package/docs/classes/AbortError.md +108 -129
  16. package/docs/classes/AlreadyExistsError.md +105 -126
  17. package/docs/classes/BaseError.md +112 -125
  18. package/docs/classes/CancelableAbility.md +136 -188
  19. package/docs/classes/ClientTools.md +1005 -1107
  20. package/docs/classes/CommonError.md +115 -136
  21. package/docs/classes/ConfigFile.md +150 -163
  22. package/docs/classes/EventClient.md +1128 -1282
  23. package/docs/classes/EventServer.md +1165 -1303
  24. package/docs/classes/EventToolFunc.md +958 -1028
  25. package/docs/classes/FStringPromptTemplate.md +352 -438
  26. package/docs/classes/FewShotPromptTemplate.md +364 -464
  27. package/docs/classes/GolangPromptTemplate.md +352 -438
  28. package/docs/classes/HFEnvironment.md +53 -79
  29. package/docs/classes/HFInterpreter.md +20 -377
  30. package/docs/classes/HFTemplate.md +21 -33
  31. package/docs/classes/HfPromptTemplate.md +352 -438
  32. package/docs/classes/IntSet.md +67 -100
  33. package/docs/classes/NotFoundError.md +105 -126
  34. package/docs/classes/NotImplementationError.md +105 -126
  35. package/docs/classes/PromptExampleSelector.md +58 -70
  36. package/docs/classes/PromptTemplate.md +338 -422
  37. package/docs/classes/ReadableStreamError.md +108 -129
  38. package/docs/classes/ResClientTools.md +916 -1026
  39. package/docs/classes/ResServerTools.md +919 -1026
  40. package/docs/classes/SSEChannel.md +93 -112
  41. package/docs/classes/Semaphore.md +44 -140
  42. package/docs/classes/ServerTools.md +981 -1072
  43. package/docs/classes/TaskAbortController.md +46 -66
  44. package/docs/classes/ToolFunc.md +840 -910
  45. package/docs/enumerations/AsyncFeatureBits.md +37 -0
  46. package/docs/enumerations/AsyncFeatures.md +37 -0
  47. package/docs/enumerations/ErrorCode.md +217 -0
  48. package/docs/enumerations/XXHashAlgorithm.md +27 -0
  49. package/docs/functions/AIArgProcessor.md +27 -0
  50. package/docs/functions/AIStream.md +50 -0
  51. package/docs/functions/ChoiceArgProcessor.md +27 -0
  52. package/docs/functions/RateLimit.md +33 -0
  53. package/docs/functions/TemplateArgProcessor.md +27 -0
  54. package/docs/functions/backendEventable.md +23 -0
  55. package/docs/functions/canonicalize.md +21 -0
  56. package/docs/functions/countRegexMatches.md +33 -0
  57. package/docs/functions/createAbilityInjector.md +87 -0
  58. package/docs/functions/createCallbacksTransformer.md +49 -0
  59. package/docs/functions/createEmptyReadableStream.md +23 -0
  60. package/docs/functions/createEndWithRepetitionDetector.md +29 -0
  61. package/docs/functions/createError.md +35 -0
  62. package/docs/functions/createEventStreamTransformer.md +33 -0
  63. package/docs/functions/createHfValueFunc.md +29 -0
  64. package/docs/functions/createLRUCache.md +23 -0
  65. package/docs/functions/dateToText.md +23 -0
  66. package/docs/functions/expandEnv.md +40 -0
  67. package/docs/functions/expandObjEnv.md +54 -0
  68. package/docs/functions/extNameLevel.md +43 -0
  69. package/docs/functions/fileIsExists.md +34 -0
  70. package/docs/functions/filenameReservedRegex.md +22 -0
  71. package/docs/functions/filterValidFnScope.md +21 -0
  72. package/docs/functions/findPort.md +23 -0
  73. package/docs/functions/formatISO.md +71 -0
  74. package/docs/functions/getAllEnumKeys.md +31 -0
  75. package/docs/functions/getConfigFileNames.md +23 -0
  76. package/docs/functions/getConfigs.md +23 -0
  77. package/docs/functions/getKeysPath.md +38 -0
  78. package/docs/functions/getMultiLevelExtname.md +31 -0
  79. package/docs/functions/getPackageDir.md +39 -0
  80. package/docs/functions/getRealFilepath.md +34 -0
  81. package/docs/functions/getResponseErrorReadableStream.md +21 -0
  82. package/docs/functions/hfParse.md +24 -0
  83. package/docs/functions/hfTokenize.md +25 -0
  84. package/docs/functions/interpolateEnv.md +25 -0
  85. package/docs/functions/interpolateFString.md +27 -0
  86. package/docs/functions/interpolateGolangTemplate.md +31 -0
  87. package/docs/functions/isModelNameMatched.md +45 -0
  88. package/docs/functions/isValidFilename.md +38 -0
  89. package/docs/functions/isValidFilepath.md +27 -0
  90. package/docs/functions/isWebStream.md +21 -0
  91. package/docs/functions/jsonFilterToWhere.md +45 -0
  92. package/docs/functions/jsonToMarkdownStr.md +31 -0
  93. package/docs/functions/loadFileFromPaths.md +54 -0
  94. package/docs/functions/loadTextFromPaths.md +29 -0
  95. package/docs/functions/lrucache.md +29 -0
  96. package/docs/functions/makeToolFuncCancelable.md +23 -0
  97. package/docs/functions/matchUrlProtocol.md +48 -0
  98. package/docs/functions/memoize.md +27 -0
  99. package/docs/functions/messagesToText.md +21 -0
  100. package/docs/functions/paramsSizeToScaleStr.md +32 -0
  101. package/docs/functions/parseCommand.md +33 -0
  102. package/docs/functions/parseDateFormat.md +360 -0
  103. package/docs/functions/parseFString.md +26 -0
  104. package/docs/functions/parseISO.md +72 -0
  105. package/docs/functions/parseJsJson.md +38 -0
  106. package/docs/functions/parseObjectArgInfo.md +27 -0
  107. package/docs/functions/parseObjectArgumentInfos.md +25 -0
  108. package/docs/functions/parseObjectArguments.md +68 -0
  109. package/docs/functions/parseObjectArgumentsAsArgInfos.md +42 -0
  110. package/docs/functions/parseYaml.md +21 -0
  111. package/docs/functions/quoteStr.md +21 -0
  112. package/docs/functions/reControlCharsRegex.md +21 -0
  113. package/docs/functions/readFilenamesRecursiveSync.md +47 -0
  114. package/docs/functions/readableFromAsyncIterable.md +28 -0
  115. package/docs/functions/registerCoreTools.md +17 -0
  116. package/docs/functions/registerYamlTag.md +21 -0
  117. package/docs/functions/sanitizeFilename.md +37 -0
  118. package/docs/functions/sanitizeFilepath.md +31 -0
  119. package/docs/functions/saveConfigFile.md +25 -0
  120. package/docs/functions/scaleStrToParamsSize.md +27 -0
  121. package/docs/functions/simplifyObjectArguments.md +21 -0
  122. package/docs/functions/sortedValues.md +25 -0
  123. package/docs/functions/splitSentence.md +37 -0
  124. package/docs/functions/stringifyYaml.md +49 -0
  125. package/docs/functions/textToDate.md +23 -0
  126. package/docs/functions/throwError.md +37 -0
  127. package/docs/functions/toDate.md +76 -0
  128. package/docs/functions/toDateTime.md +21 -0
  129. package/docs/functions/trimStartOfStreamHelper.md +41 -0
  130. package/docs/functions/truncTo.md +47 -0
  131. package/docs/functions/uuid.md +23 -0
  132. package/docs/functions/uuidParse.md +21 -0
  133. package/docs/functions/uuidStringify.md +23 -0
  134. package/docs/functions/uuidValidate.md +21 -0
  135. package/docs/functions/uuidVersion.md +21 -0
  136. package/docs/functions/uuidv1.md +47 -0
  137. package/docs/functions/uuidv4.md +47 -0
  138. package/docs/functions/uuidv5.md +51 -0
  139. package/docs/functions/wait.md +21 -0
  140. package/docs/functions/xxhash.md +25 -0
  141. package/docs/functions/xxhash32.md +23 -0
  142. package/docs/functions/xxhash64.md +23 -0
  143. package/docs/functions/xxhashAsStr.md +25 -0
  144. package/docs/globals.md +236 -0
  145. package/docs/interfaces/AIChatAssistantMessageParam.md +29 -38
  146. package/docs/interfaces/AIChatContentPartImage.md +11 -16
  147. package/docs/interfaces/AIChatContentPartText.md +9 -12
  148. package/docs/interfaces/AIChatMessageParamBase.md +12 -19
  149. package/docs/interfaces/AIChatMessageToolCall.md +18 -21
  150. package/docs/interfaces/AIChatSystemMessageParam.md +16 -22
  151. package/docs/interfaces/AIChatToolMessageParam.md +19 -26
  152. package/docs/interfaces/AIChatUserMessageParam.md +32 -42
  153. package/docs/interfaces/AIChoiceConfig.md +31 -39
  154. package/docs/interfaces/AIResult.md +26 -33
  155. package/docs/interfaces/AIStreamParser.md +24 -18
  156. package/docs/interfaces/AIStreamParserOptions.md +8 -10
  157. package/docs/interfaces/BaseFunc.md +55 -75
  158. package/docs/interfaces/BaseFuncItem.md +43 -61
  159. package/docs/interfaces/CancelableAbilityOptions.md +43 -54
  160. package/docs/interfaces/ClientFuncItem.md +66 -83
  161. package/docs/interfaces/DotenvExpandOptions.md +15 -19
  162. package/docs/interfaces/DotenvExpandOutput.md +11 -14
  163. package/docs/interfaces/DotenvParseInput.md +6 -2
  164. package/docs/interfaces/DotenvParseOutput.md +6 -2
  165. package/docs/interfaces/DotenvPopulateInput.md +6 -2
  166. package/docs/interfaces/EventClientFuncParams.md +22 -33
  167. package/docs/interfaces/EventServerFuncParams.md +27 -35
  168. package/docs/interfaces/FewShotPromptTemplateOptions.md +58 -74
  169. package/docs/interfaces/FuncItem.md +53 -70
  170. package/docs/interfaces/FuncParam.md +29 -36
  171. package/docs/interfaces/FuncParams.md +6 -2
  172. package/docs/interfaces/Funcs.md +6 -2
  173. package/docs/interfaces/JsonFilter.md +6 -2
  174. package/docs/interfaces/ParseObjectArgumentOptions.md +23 -29
  175. package/docs/interfaces/PromptExampleSelectorOptions.md +13 -16
  176. package/docs/interfaces/PromptTemplateOptions.md +31 -40
  177. package/docs/interfaces/RemoteFuncItem.md +64 -82
  178. package/docs/interfaces/ResClientFuncParams.md +14 -19
  179. package/docs/interfaces/ResServerFuncParams.md +28 -36
  180. package/docs/interfaces/SanitizeFilenameOptions.md +11 -14
  181. package/docs/interfaces/ServerFuncItem.md +70 -88
  182. package/docs/interfaces/ServerFuncParams.md +15 -20
  183. package/docs/interfaces/StreamCallbacksAndOptions.md +36 -65
  184. package/docs/interfaces/TaskAbortControllers.md +6 -2
  185. package/docs/interfaces/TaskPromise.md +48 -61
  186. package/docs/interfaces/ToolFuncPackage.md +18 -32
  187. package/docs/type-aliases/AIChatContentPart.md +13 -0
  188. package/docs/type-aliases/AIChatMessageParam.md +13 -0
  189. package/docs/type-aliases/AIChatRole.md +13 -0
  190. package/docs/type-aliases/AIMessageType.md +13 -0
  191. package/docs/type-aliases/AIModelNameRule.md +13 -0
  192. package/docs/type-aliases/AIModelNameRuleFn.md +21 -0
  193. package/docs/type-aliases/AIModelNameRules.md +13 -0
  194. package/docs/type-aliases/AITextGenerationFinishReason.md +13 -0
  195. package/docs/type-aliases/ActionName.md +13 -0
  196. package/docs/type-aliases/AsyncTaskId.md +13 -0
  197. package/docs/type-aliases/EventErrorListenerFn.md +27 -0
  198. package/docs/type-aliases/EventListenerFn.md +25 -0
  199. package/docs/type-aliases/FStringPromptTemplateNode.md +16 -0
  200. package/docs/type-aliases/FuncParamType.md +13 -0
  201. package/docs/type-aliases/PromptExamples.md +17 -0
  202. package/docs/type-aliases/PromptTemplateType.md +13 -0
  203. package/docs/type-aliases/PromptType.md +13 -0
  204. package/docs/type-aliases/TFunc.md +23 -0
  205. package/docs/variables/AIChatRoles.md +13 -0
  206. package/docs/variables/AIMessageTypes.md +13 -0
  207. package/docs/variables/AITextGenerationFinishReasons.md +13 -0
  208. package/docs/variables/AbortErrorCode.md +13 -0
  209. package/docs/variables/ActionNames.md +13 -0
  210. package/docs/variables/AlreadyExistsErrorCode.md +13 -0
  211. package/docs/variables/ClientToolFuncSchema.md +87 -0
  212. package/docs/variables/DefaultAsyncSemaphoreCapacity.md +13 -0
  213. package/docs/variables/EventBusName.md +13 -0
  214. package/docs/variables/EventName.md +13 -0
  215. package/docs/variables/FilenameReservedRegex.md +16 -0
  216. package/docs/variables/HFBuiltins.md +92 -0
  217. package/docs/variables/InternalErrorCode.md +13 -0
  218. package/docs/variables/NotFoundErrorCode.md +13 -0
  219. package/docs/variables/NotImplementedErrorCode.md +13 -0
  220. package/docs/variables/PASSING_SCORE.md +13 -0
  221. package/docs/variables/PromptTemplateTypes.md +13 -0
  222. package/docs/variables/PromptTypes.md +16 -0
  223. package/docs/variables/RStreamErrCode.md +13 -0
  224. package/docs/variables/RemoteToolFuncSchema.md +87 -0
  225. package/docs/variables/ResponseRStreamErrCode.md +13 -0
  226. package/docs/variables/SSEChannelAlreadyClosedErrCode.md +13 -0
  227. package/docs/variables/ServerToolFuncSchema.md +87 -0
  228. package/docs/variables/ToolAsyncCancelableBit.md +13 -0
  229. package/docs/variables/ToolAsyncMultiTaskBit.md +13 -0
  230. package/docs/variables/ToolAsyncPriorityBit.md +13 -0
  231. package/docs/variables/ToolFuncSchema.md +125 -0
  232. package/docs/variables/WindowsReservedNameRegex.md +15 -0
  233. package/docs/variables/base32768.md +13 -0
  234. package/docs/variables/defaultTemplateFormat.md +13 -0
  235. package/docs/variables/event.md +13 -0
  236. package/docs/variables/eventClient.md +13 -0
  237. package/docs/variables/eventServer.md +13 -0
  238. package/docs/variables/lrucache.md +13 -0
  239. package/docs/variables/mimeType.md +13 -0
  240. package/docs/variables/uuidNIL.md +13 -0
  241. package/package.json +26 -27
  242. package/dist/chunk-W2LO3HZT.mjs +0 -1
  243. package/docs/.nojekyll +0 -1
  244. package/docs/enums/AsyncFeatureBits.md +0 -41
  245. package/docs/enums/AsyncFeatures.md +0 -41
  246. package/docs/enums/ErrorCode.md +0 -239
  247. package/docs/enums/XXHashAlgorithm.md +0 -30
  248. package/docs/modules.md +0 -4062
@@ -1,40 +1,20 @@
1
- [@isdk/ai-tool](../README.md) / [Exports](../modules.md) / ConfigFile
1
+ [**@isdk/ai-tool**](../README.md) **Docs**
2
2
 
3
- # Class: ConfigFile
4
-
5
- ## Table of contents
6
-
7
- ### Constructors
8
-
9
- - [constructor](ConfigFile.md#constructor)
3
+ ***
10
4
 
11
- ### Properties
5
+ [@isdk/ai-tool](../globals.md) / ConfigFile
12
6
 
13
- - [configurators](ConfigFile.md#configurators)
14
- - [fs](ConfigFile.md#fs)
15
- - [path](ConfigFile.md#path)
16
- - [readFile](ConfigFile.md#readfile)
17
-
18
- ### Methods
19
-
20
- - [load](ConfigFile.md#load)
21
- - [loadSync](ConfigFile.md#loadsync)
22
- - [load](ConfigFile.md#load-1)
23
- - [loadSync](ConfigFile.md#loadsync-1)
24
- - [register](ConfigFile.md#register)
25
- - [setFileSystem](ConfigFile.md#setfilesystem)
7
+ # Class: ConfigFile
26
8
 
27
9
  ## Constructors
28
10
 
29
- ### constructor
11
+ ### new ConfigFile()
30
12
 
31
- **new ConfigFile**(`aOptions?`): [`ConfigFile`](ConfigFile.md)
13
+ > **new ConfigFile**(`aOptions`?): [`ConfigFile`](ConfigFile.md)
32
14
 
33
15
  #### Parameters
34
16
 
35
- | Name | Type |
36
- | :------ | :------ |
37
- | `aOptions?` | `IConfigOptions` |
17
+ **aOptions?**: `IConfigOptions`
38
18
 
39
19
  #### Returns
40
20
 
@@ -42,16 +22,17 @@
42
22
 
43
23
  #### Defined in
44
24
 
45
- node_modules/.pnpm/load-config-file@2.0.0/node_modules/load-config-file/lib/index.d.ts:42
25
+ node\_modules/.pnpm/load-config-file@2.0.0/node\_modules/load-config-file/lib/index.d.ts:42
26
+
27
+ ### new ConfigFile()
46
28
 
47
- **new ConfigFile**(`aPath`, `aOptions?`): [`ConfigFile`](ConfigFile.md)
29
+ > **new ConfigFile**(`aPath`, `aOptions`?): [`ConfigFile`](ConfigFile.md)
48
30
 
49
31
  #### Parameters
50
32
 
51
- | Name | Type |
52
- | :------ | :------ |
53
- | `aPath` | `string` |
54
- | `aOptions?` | `IConfigOptions` |
33
+ **aPath**: `string`
34
+
35
+ **aOptions?**: `IConfigOptions`
55
36
 
56
37
  #### Returns
57
38
 
@@ -59,241 +40,249 @@ node_modules/.pnpm/load-config-file@2.0.0/node_modules/load-config-file/lib/inde
59
40
 
60
41
  #### Defined in
61
42
 
62
- node_modules/.pnpm/load-config-file@2.0.0/node_modules/load-config-file/lib/index.d.ts:43
43
+ node\_modules/.pnpm/load-config-file@2.0.0/node\_modules/load-config-file/lib/index.d.ts:43
63
44
 
64
45
  ## Properties
65
46
 
66
47
  ### configurators
67
48
 
68
- **configurators**: `IConfigurator`
49
+ > **configurators**: `IConfigurator`
69
50
 
70
51
  #### Defined in
71
52
 
72
- node_modules/.pnpm/load-config-file@2.0.0/node_modules/load-config-file/lib/index.d.ts:37
53
+ node\_modules/.pnpm/load-config-file@2.0.0/node\_modules/load-config-file/lib/index.d.ts:37
73
54
 
74
- ___
55
+ ***
75
56
 
76
57
  ### fs
77
58
 
78
- **fs**: `IFileSystem`
59
+ > **fs**: `IFileSystem`
79
60
 
80
61
  #### Defined in
81
62
 
82
- node_modules/.pnpm/load-config-file@2.0.0/node_modules/load-config-file/lib/index.d.ts:38
63
+ node\_modules/.pnpm/load-config-file@2.0.0/node\_modules/load-config-file/lib/index.d.ts:38
83
64
 
84
- ___
65
+ ***
85
66
 
86
67
  ### path
87
68
 
88
- **path**: `any`
69
+ > **path**: `any`
89
70
 
90
71
  #### Defined in
91
72
 
92
- node_modules/.pnpm/load-config-file@2.0.0/node_modules/load-config-file/lib/index.d.ts:39
73
+ node\_modules/.pnpm/load-config-file@2.0.0/node\_modules/load-config-file/lib/index.d.ts:39
93
74
 
94
- ___
75
+ ***
95
76
 
96
77
  ### readFile
97
78
 
98
- **readFile**: `any`
79
+ > **readFile**: `any`
99
80
 
100
81
  #### Defined in
101
82
 
102
- node_modules/.pnpm/load-config-file@2.0.0/node_modules/load-config-file/lib/index.d.ts:40
83
+ node\_modules/.pnpm/load-config-file@2.0.0/node\_modules/load-config-file/lib/index.d.ts:40
103
84
 
104
85
  ## Methods
105
86
 
106
- ### load
87
+ ### load()
107
88
 
108
- **load**(`aPath`, `done`): `void`
89
+ #### load(aPath, done)
109
90
 
110
- #### Parameters
91
+ > **load**(`aPath`, `done`): `void`
111
92
 
112
- | Name | Type |
113
- | :------ | :------ |
114
- | `aPath` | `string` |
115
- | `done` | `ConfigCallBackFn` |
93
+ ##### Parameters
116
94
 
117
- #### Returns
95
+ **aPath**: `string`
96
+
97
+ • **done**: `ConfigCallBackFn`
98
+
99
+ ##### Returns
118
100
 
119
101
  `void`
120
102
 
121
- #### Defined in
103
+ ##### Defined in
122
104
 
123
- node_modules/.pnpm/load-config-file@2.0.0/node_modules/load-config-file/lib/index.d.ts:44
105
+ node\_modules/.pnpm/load-config-file@2.0.0/node\_modules/load-config-file/lib/index.d.ts:44
124
106
 
125
- **load**(`done`): `void`
107
+ #### load(done)
126
108
 
127
- #### Parameters
109
+ > **load**(`done`): `void`
128
110
 
129
- | Name | Type |
130
- | :------ | :------ |
131
- | `done` | `ConfigCallBackFn` |
111
+ ##### Parameters
132
112
 
133
- #### Returns
113
+ **done**: `ConfigCallBackFn`
114
+
115
+ ##### Returns
134
116
 
135
117
  `void`
136
118
 
137
- #### Defined in
119
+ ##### Defined in
138
120
 
139
- node_modules/.pnpm/load-config-file@2.0.0/node_modules/load-config-file/lib/index.d.ts:45
121
+ node\_modules/.pnpm/load-config-file@2.0.0/node\_modules/load-config-file/lib/index.d.ts:45
140
122
 
141
- **load**(`aPath`, `aOptions`, `done`): `void`
123
+ #### load(aPath, aOptions, done)
142
124
 
143
- #### Parameters
125
+ > **load**(`aPath`, `aOptions`, `done`): `void`
144
126
 
145
- | Name | Type |
146
- | :------ | :------ |
147
- | `aPath` | `string` |
148
- | `aOptions` | `IConfigOptions` |
149
- | `done` | `ConfigCallBackFn` |
127
+ ##### Parameters
150
128
 
151
- #### Returns
129
+ **aPath**: `string`
130
+
131
+ • **aOptions**: `IConfigOptions`
132
+
133
+ • **done**: `ConfigCallBackFn`
134
+
135
+ ##### Returns
152
136
 
153
137
  `void`
154
138
 
155
- #### Defined in
139
+ ##### Defined in
156
140
 
157
- node_modules/.pnpm/load-config-file@2.0.0/node_modules/load-config-file/lib/index.d.ts:46
141
+ node\_modules/.pnpm/load-config-file@2.0.0/node\_modules/load-config-file/lib/index.d.ts:46
158
142
 
159
- **load**(`aPath`, `aOptions?`): `Promise`\<`any`\>
143
+ #### load(aPath, aOptions)
160
144
 
161
- #### Parameters
145
+ > **load**(`aPath`, `aOptions`?): `Promise`\<`any`\>
162
146
 
163
- | Name | Type |
164
- | :------ | :------ |
165
- | `aPath` | `string` |
166
- | `aOptions?` | `IConfigOptions` |
147
+ ##### Parameters
167
148
 
168
- #### Returns
149
+ **aPath**: `string`
150
+
151
+ • **aOptions?**: `IConfigOptions`
152
+
153
+ ##### Returns
169
154
 
170
155
  `Promise`\<`any`\>
171
156
 
172
- #### Defined in
157
+ ##### Defined in
173
158
 
174
- node_modules/.pnpm/load-config-file@2.0.0/node_modules/load-config-file/lib/index.d.ts:47
159
+ node\_modules/.pnpm/load-config-file@2.0.0/node\_modules/load-config-file/lib/index.d.ts:47
175
160
 
176
- **load**(`aOptions?`): `Promise`\<`any`\>
161
+ #### load(aOptions)
177
162
 
178
- #### Parameters
163
+ > **load**(`aOptions`?): `Promise`\<`any`\>
179
164
 
180
- | Name | Type |
181
- | :------ | :------ |
182
- | `aOptions?` | `IConfigOptions` |
165
+ ##### Parameters
183
166
 
184
- #### Returns
167
+ **aOptions?**: `IConfigOptions`
168
+
169
+ ##### Returns
185
170
 
186
171
  `Promise`\<`any`\>
187
172
 
188
- #### Defined in
173
+ ##### Defined in
189
174
 
190
- node_modules/.pnpm/load-config-file@2.0.0/node_modules/load-config-file/lib/index.d.ts:48
175
+ node\_modules/.pnpm/load-config-file@2.0.0/node\_modules/load-config-file/lib/index.d.ts:48
191
176
 
192
- ___
177
+ ***
193
178
 
194
- ### loadSync
179
+ ### loadSync()
195
180
 
196
- **loadSync**(`aPath`, `aOptions?`): `any`
181
+ #### loadSync(aPath, aOptions)
197
182
 
198
- #### Parameters
183
+ > **loadSync**(`aPath`, `aOptions`?): `any`
199
184
 
200
- | Name | Type |
201
- | :------ | :------ |
202
- | `aPath` | `string` |
203
- | `aOptions?` | `IConfigOptions` |
185
+ ##### Parameters
204
186
 
205
- #### Returns
187
+ **aPath**: `string`
188
+
189
+ • **aOptions?**: `IConfigOptions`
190
+
191
+ ##### Returns
206
192
 
207
193
  `any`
208
194
 
209
- #### Defined in
195
+ ##### Defined in
210
196
 
211
- node_modules/.pnpm/load-config-file@2.0.0/node_modules/load-config-file/lib/index.d.ts:49
197
+ node\_modules/.pnpm/load-config-file@2.0.0/node\_modules/load-config-file/lib/index.d.ts:49
212
198
 
213
- **loadSync**(`aOptions?`): `any`
199
+ #### loadSync(aOptions)
214
200
 
215
- #### Parameters
201
+ > **loadSync**(`aOptions`?): `any`
216
202
 
217
- | Name | Type |
218
- | :------ | :------ |
219
- | `aOptions?` | `IConfigOptions` |
203
+ ##### Parameters
220
204
 
221
- #### Returns
205
+ **aOptions?**: `IConfigOptions`
206
+
207
+ ##### Returns
222
208
 
223
209
  `any`
224
210
 
225
- #### Defined in
211
+ ##### Defined in
226
212
 
227
- node_modules/.pnpm/load-config-file@2.0.0/node_modules/load-config-file/lib/index.d.ts:50
213
+ node\_modules/.pnpm/load-config-file@2.0.0/node\_modules/load-config-file/lib/index.d.ts:50
228
214
 
229
- ___
215
+ ***
230
216
 
231
- ### load
217
+ ### load()
232
218
 
233
- **load**(`aPath`, `aOptions?`): `Promise`\<`any`\>
219
+ #### load(aPath, aOptions)
234
220
 
235
- #### Parameters
221
+ > `static` **load**(`aPath`, `aOptions`?): `Promise`\<`any`\>
236
222
 
237
- | Name | Type |
238
- | :------ | :------ |
239
- | `aPath` | `string` |
240
- | `aOptions?` | `IConfigOptions` |
223
+ ##### Parameters
241
224
 
242
- #### Returns
225
+ **aPath**: `string`
226
+
227
+ • **aOptions?**: `IConfigOptions`
228
+
229
+ ##### Returns
243
230
 
244
231
  `Promise`\<`any`\>
245
232
 
246
- #### Defined in
233
+ ##### Defined in
247
234
 
248
- node_modules/.pnpm/load-config-file@2.0.0/node_modules/load-config-file/lib/index.d.ts:32
235
+ node\_modules/.pnpm/load-config-file@2.0.0/node\_modules/load-config-file/lib/index.d.ts:32
249
236
 
250
- **load**(`aPath`, `aOptions`, `done`): `void` \| `Promise`\<`any`\>
237
+ #### load(aPath, aOptions, done)
251
238
 
252
- #### Parameters
239
+ > `static` **load**(`aPath`, `aOptions`, `done`): `void` \| `Promise`\<`any`\>
253
240
 
254
- | Name | Type |
255
- | :------ | :------ |
256
- | `aPath` | `string` |
257
- | `aOptions` | `IConfigOptions` |
258
- | `done` | ``true`` \| `ConfigCallBackFn` |
241
+ ##### Parameters
259
242
 
260
- #### Returns
243
+ **aPath**: `string`
244
+
245
+ • **aOptions**: `IConfigOptions`
246
+
247
+ • **done**: `true` \| `ConfigCallBackFn`
248
+
249
+ ##### Returns
261
250
 
262
251
  `void` \| `Promise`\<`any`\>
263
252
 
264
- #### Defined in
253
+ ##### Defined in
265
254
 
266
- node_modules/.pnpm/load-config-file@2.0.0/node_modules/load-config-file/lib/index.d.ts:33
255
+ node\_modules/.pnpm/load-config-file@2.0.0/node\_modules/load-config-file/lib/index.d.ts:33
267
256
 
268
- **load**(`aPath`, `done`): `void` \| `Promise`\<`any`\>
257
+ #### load(aPath, done)
269
258
 
270
- #### Parameters
259
+ > `static` **load**(`aPath`, `done`): `void` \| `Promise`\<`any`\>
271
260
 
272
- | Name | Type |
273
- | :------ | :------ |
274
- | `aPath` | `string` |
275
- | `done` | ``true`` \| `ConfigCallBackFn` |
261
+ ##### Parameters
276
262
 
277
- #### Returns
263
+ **aPath**: `string`
264
+
265
+ • **done**: `true` \| `ConfigCallBackFn`
266
+
267
+ ##### Returns
278
268
 
279
269
  `void` \| `Promise`\<`any`\>
280
270
 
281
- #### Defined in
271
+ ##### Defined in
282
272
 
283
- node_modules/.pnpm/load-config-file@2.0.0/node_modules/load-config-file/lib/index.d.ts:34
273
+ node\_modules/.pnpm/load-config-file@2.0.0/node\_modules/load-config-file/lib/index.d.ts:34
284
274
 
285
- ___
275
+ ***
286
276
 
287
- ### loadSync
277
+ ### loadSync()
288
278
 
289
- **loadSync**(`aPath`, `aOptions?`): `any`
279
+ > `static` **loadSync**(`aPath`, `aOptions`?): `any`
290
280
 
291
281
  #### Parameters
292
282
 
293
- | Name | Type |
294
- | :------ | :------ |
295
- | `aPath` | `string` |
296
- | `aOptions?` | `IConfigOptions` |
283
+ **aPath**: `string`
284
+
285
+ **aOptions?**: `IConfigOptions`
297
286
 
298
287
  #### Returns
299
288
 
@@ -301,21 +290,21 @@ ___
301
290
 
302
291
  #### Defined in
303
292
 
304
- node_modules/.pnpm/load-config-file@2.0.0/node_modules/load-config-file/lib/index.d.ts:35
293
+ node\_modules/.pnpm/load-config-file@2.0.0/node\_modules/load-config-file/lib/index.d.ts:35
305
294
 
306
- ___
295
+ ***
307
296
 
308
- ### register
297
+ ### register()
309
298
 
310
- **register**(`aExts`, `aProcess`, `aConfigurators?`): `any`
299
+ > `static` **register**(`aExts`, `aProcess`, `aConfigurators`?): `any`
311
300
 
312
301
  #### Parameters
313
302
 
314
- | Name | Type |
315
- | :------ | :------ |
316
- | `aExts` | `string` \| `string`[] |
317
- | `aProcess` | `ConfigAsyncProcessFn` |
318
- | `aConfigurators?` | `IConfigurator` |
303
+ **aExts**: `string` \| `string`[]
304
+
305
+ **aProcess**: `ConfigAsyncProcessFn`
306
+
307
+ **aConfigurators?**: `IConfigurator`
319
308
 
320
309
  #### Returns
321
310
 
@@ -323,19 +312,17 @@ ___
323
312
 
324
313
  #### Defined in
325
314
 
326
- node_modules/.pnpm/load-config-file@2.0.0/node_modules/load-config-file/lib/index.d.ts:29
315
+ node\_modules/.pnpm/load-config-file@2.0.0/node\_modules/load-config-file/lib/index.d.ts:29
327
316
 
328
- ___
317
+ ***
329
318
 
330
- ### setFileSystem
319
+ ### setFileSystem()
331
320
 
332
- **setFileSystem**(`aFileSystem`): `any`
321
+ > `static` **setFileSystem**(`aFileSystem`): `any`
333
322
 
334
323
  #### Parameters
335
324
 
336
- | Name | Type |
337
- | :------ | :------ |
338
- | `aFileSystem` | `IFileSystem` |
325
+ **aFileSystem**: `IFileSystem`
339
326
 
340
327
  #### Returns
341
328
 
@@ -343,4 +330,4 @@ ___
343
330
 
344
331
  #### Defined in
345
332
 
346
- node_modules/.pnpm/load-config-file@2.0.0/node_modules/load-config-file/lib/index.d.ts:30
333
+ node\_modules/.pnpm/load-config-file@2.0.0/node\_modules/load-config-file/lib/index.d.ts:30