repoburg 1.0.66 → 1.0.68

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 (2066) hide show
  1. package/backend/dist/action-execution/action-execution.service.js +28 -0
  2. package/backend/dist/action-execution/action-execution.service.js.map +1 -1
  3. package/backend/dist/ai-actions/ai-actions.service.js +43 -0
  4. package/backend/dist/ai-actions/ai-actions.service.js.map +1 -1
  5. package/backend/dist/context-generation/context-generation.service.js +55 -0
  6. package/backend/dist/context-generation/context-generation.service.js.map +1 -1
  7. package/backend/dist/llm-response-parser/llm-response-parser.service.js +10 -0
  8. package/backend/dist/llm-response-parser/llm-response-parser.service.js.map +1 -1
  9. package/backend/dist/main.js +2 -0
  10. package/backend/dist/main.js.map +1 -1
  11. package/backend/dist/projects/projects.service.js +20 -0
  12. package/backend/dist/projects/projects.service.js.map +1 -1
  13. package/backend/dist/sessions/sessions.service.js +49 -0
  14. package/backend/dist/sessions/sessions.service.js.map +1 -1
  15. package/backend/dist/tracing.d.ts +1 -0
  16. package/backend/dist/tracing.js +53 -0
  17. package/backend/dist/tracing.js.map +1 -0
  18. package/backend/dist/tsconfig.build.tsbuildinfo +1 -1
  19. package/backend/dist/utils/index.d.ts +1 -0
  20. package/backend/dist/utils/index.js +1 -0
  21. package/backend/dist/utils/index.js.map +1 -1
  22. package/backend/dist/utils/trace.decorator.d.ts +1 -0
  23. package/backend/dist/utils/trace.decorator.js +31 -0
  24. package/backend/dist/utils/trace.decorator.js.map +1 -0
  25. package/backend/dist/workspace/workspace.service.d.ts +1 -0
  26. package/backend/dist/workspace/workspace.service.js +84 -23
  27. package/backend/dist/workspace/workspace.service.js.map +1 -1
  28. package/backend/node_modules/@types/node/LICENSE +21 -0
  29. package/backend/node_modules/@types/node/README.md +15 -0
  30. package/backend/node_modules/@types/node/assert/strict.d.ts +8 -0
  31. package/backend/node_modules/@types/node/assert.d.ts +1044 -0
  32. package/backend/node_modules/@types/node/async_hooks.d.ts +605 -0
  33. package/backend/node_modules/@types/node/buffer.buffer.d.ts +462 -0
  34. package/backend/node_modules/@types/node/buffer.d.ts +1932 -0
  35. package/backend/node_modules/@types/node/child_process.d.ts +1452 -0
  36. package/backend/node_modules/@types/node/cluster.d.ts +578 -0
  37. package/backend/node_modules/@types/node/compatibility/disposable.d.ts +16 -0
  38. package/backend/node_modules/@types/node/compatibility/index.d.ts +9 -0
  39. package/backend/node_modules/@types/node/compatibility/indexable.d.ts +20 -0
  40. package/backend/node_modules/@types/node/compatibility/iterators.d.ts +21 -0
  41. package/backend/node_modules/@types/node/console.d.ts +452 -0
  42. package/backend/node_modules/@types/node/constants.d.ts +21 -0
  43. package/backend/node_modules/@types/node/crypto.d.ts +4570 -0
  44. package/backend/node_modules/@types/node/dgram.d.ts +596 -0
  45. package/backend/node_modules/@types/node/diagnostics_channel.d.ts +578 -0
  46. package/backend/node_modules/@types/node/dns/promises.d.ts +479 -0
  47. package/backend/node_modules/@types/node/dns.d.ts +871 -0
  48. package/backend/node_modules/@types/node/domain.d.ts +170 -0
  49. package/backend/node_modules/@types/node/events.d.ts +931 -0
  50. package/backend/node_modules/@types/node/fs/promises.d.ts +1248 -0
  51. package/backend/node_modules/@types/node/fs.d.ts +4362 -0
  52. package/backend/node_modules/@types/node/globals.d.ts +170 -0
  53. package/backend/node_modules/@types/node/globals.typedarray.d.ts +21 -0
  54. package/backend/node_modules/@types/node/http.d.ts +2031 -0
  55. package/backend/node_modules/@types/node/http2.d.ts +2623 -0
  56. package/backend/node_modules/@types/node/https.d.ts +549 -0
  57. package/backend/node_modules/@types/node/index.d.ts +93 -0
  58. package/backend/node_modules/@types/node/inspector.generated.d.ts +3966 -0
  59. package/backend/node_modules/@types/node/module.d.ts +539 -0
  60. package/backend/node_modules/@types/node/net.d.ts +1011 -0
  61. package/backend/node_modules/@types/node/os.d.ts +495 -0
  62. package/backend/node_modules/@types/node/package.json +140 -0
  63. package/backend/node_modules/@types/node/path.d.ts +200 -0
  64. package/backend/node_modules/@types/node/perf_hooks.d.ts +963 -0
  65. package/backend/node_modules/@types/node/process.d.ts +1956 -0
  66. package/backend/node_modules/@types/node/punycode.d.ts +117 -0
  67. package/backend/node_modules/@types/node/querystring.d.ts +152 -0
  68. package/backend/node_modules/@types/node/readline/promises.d.ts +162 -0
  69. package/backend/node_modules/@types/node/readline.d.ts +589 -0
  70. package/backend/node_modules/@types/node/repl.d.ts +430 -0
  71. package/backend/node_modules/@types/node/sea.d.ts +153 -0
  72. package/backend/node_modules/@types/node/stream/consumers.d.ts +38 -0
  73. package/backend/node_modules/@types/node/stream/promises.d.ts +90 -0
  74. package/backend/node_modules/@types/node/stream/web.d.ts +533 -0
  75. package/backend/node_modules/@types/node/stream.d.ts +1668 -0
  76. package/backend/node_modules/@types/node/string_decoder.d.ts +67 -0
  77. package/backend/node_modules/@types/node/test.d.ts +1807 -0
  78. package/backend/node_modules/@types/node/timers/promises.d.ts +108 -0
  79. package/backend/node_modules/@types/node/timers.d.ts +286 -0
  80. package/backend/node_modules/@types/node/tls.d.ts +1231 -0
  81. package/backend/node_modules/@types/node/trace_events.d.ts +197 -0
  82. package/backend/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +460 -0
  83. package/backend/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +19 -0
  84. package/backend/node_modules/@types/node/ts5.6/index.d.ts +93 -0
  85. package/backend/node_modules/@types/node/tty.d.ts +208 -0
  86. package/backend/node_modules/@types/node/url.d.ts +964 -0
  87. package/backend/node_modules/@types/node/util.d.ts +2331 -0
  88. package/backend/node_modules/@types/node/v8.d.ts +808 -0
  89. package/backend/node_modules/@types/node/vm.d.ts +1030 -0
  90. package/backend/node_modules/@types/node/wasi.d.ts +181 -0
  91. package/backend/node_modules/@types/node/web-globals/abortcontroller.d.ts +34 -0
  92. package/backend/node_modules/@types/node/web-globals/domexception.d.ts +68 -0
  93. package/backend/node_modules/@types/node/web-globals/events.d.ts +94 -0
  94. package/backend/node_modules/@types/node/web-globals/fetch.d.ts +46 -0
  95. package/backend/node_modules/@types/node/worker_threads.d.ts +743 -0
  96. package/backend/node_modules/@types/node/zlib.d.ts +539 -0
  97. package/backend/package.json +2 -0
  98. package/daemon/node_modules/@types/node/LICENSE +21 -0
  99. package/daemon/node_modules/@types/node/README.md +15 -0
  100. package/daemon/node_modules/@types/node/assert/strict.d.ts +8 -0
  101. package/daemon/node_modules/@types/node/assert.d.ts +1044 -0
  102. package/daemon/node_modules/@types/node/async_hooks.d.ts +605 -0
  103. package/daemon/node_modules/@types/node/buffer.buffer.d.ts +462 -0
  104. package/daemon/node_modules/@types/node/buffer.d.ts +1932 -0
  105. package/daemon/node_modules/@types/node/child_process.d.ts +1452 -0
  106. package/daemon/node_modules/@types/node/cluster.d.ts +578 -0
  107. package/daemon/node_modules/@types/node/compatibility/disposable.d.ts +16 -0
  108. package/daemon/node_modules/@types/node/compatibility/index.d.ts +9 -0
  109. package/daemon/node_modules/@types/node/compatibility/indexable.d.ts +20 -0
  110. package/daemon/node_modules/@types/node/compatibility/iterators.d.ts +21 -0
  111. package/daemon/node_modules/@types/node/console.d.ts +452 -0
  112. package/daemon/node_modules/@types/node/constants.d.ts +21 -0
  113. package/daemon/node_modules/@types/node/crypto.d.ts +4570 -0
  114. package/daemon/node_modules/@types/node/dgram.d.ts +596 -0
  115. package/daemon/node_modules/@types/node/diagnostics_channel.d.ts +578 -0
  116. package/daemon/node_modules/@types/node/dns/promises.d.ts +479 -0
  117. package/daemon/node_modules/@types/node/dns.d.ts +871 -0
  118. package/daemon/node_modules/@types/node/domain.d.ts +170 -0
  119. package/daemon/node_modules/@types/node/events.d.ts +931 -0
  120. package/daemon/node_modules/@types/node/fs/promises.d.ts +1248 -0
  121. package/daemon/node_modules/@types/node/fs.d.ts +4362 -0
  122. package/daemon/node_modules/@types/node/globals.d.ts +170 -0
  123. package/daemon/node_modules/@types/node/globals.typedarray.d.ts +21 -0
  124. package/daemon/node_modules/@types/node/http.d.ts +2031 -0
  125. package/daemon/node_modules/@types/node/http2.d.ts +2623 -0
  126. package/daemon/node_modules/@types/node/https.d.ts +549 -0
  127. package/daemon/node_modules/@types/node/index.d.ts +93 -0
  128. package/daemon/node_modules/@types/node/inspector.generated.d.ts +3966 -0
  129. package/daemon/node_modules/@types/node/module.d.ts +539 -0
  130. package/daemon/node_modules/@types/node/net.d.ts +1011 -0
  131. package/daemon/node_modules/@types/node/os.d.ts +495 -0
  132. package/daemon/node_modules/@types/node/package.json +140 -0
  133. package/daemon/node_modules/@types/node/path.d.ts +200 -0
  134. package/daemon/node_modules/@types/node/perf_hooks.d.ts +963 -0
  135. package/daemon/node_modules/@types/node/process.d.ts +1956 -0
  136. package/daemon/node_modules/@types/node/punycode.d.ts +117 -0
  137. package/daemon/node_modules/@types/node/querystring.d.ts +152 -0
  138. package/daemon/node_modules/@types/node/readline/promises.d.ts +162 -0
  139. package/daemon/node_modules/@types/node/readline.d.ts +589 -0
  140. package/daemon/node_modules/@types/node/repl.d.ts +430 -0
  141. package/daemon/node_modules/@types/node/sea.d.ts +153 -0
  142. package/daemon/node_modules/@types/node/stream/consumers.d.ts +38 -0
  143. package/daemon/node_modules/@types/node/stream/promises.d.ts +90 -0
  144. package/daemon/node_modules/@types/node/stream/web.d.ts +533 -0
  145. package/daemon/node_modules/@types/node/stream.d.ts +1668 -0
  146. package/daemon/node_modules/@types/node/string_decoder.d.ts +67 -0
  147. package/daemon/node_modules/@types/node/test.d.ts +1807 -0
  148. package/daemon/node_modules/@types/node/timers/promises.d.ts +108 -0
  149. package/daemon/node_modules/@types/node/timers.d.ts +286 -0
  150. package/daemon/node_modules/@types/node/tls.d.ts +1231 -0
  151. package/daemon/node_modules/@types/node/trace_events.d.ts +197 -0
  152. package/daemon/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +460 -0
  153. package/daemon/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +19 -0
  154. package/daemon/node_modules/@types/node/ts5.6/index.d.ts +93 -0
  155. package/daemon/node_modules/@types/node/tty.d.ts +208 -0
  156. package/daemon/node_modules/@types/node/url.d.ts +964 -0
  157. package/daemon/node_modules/@types/node/util.d.ts +2331 -0
  158. package/daemon/node_modules/@types/node/v8.d.ts +808 -0
  159. package/daemon/node_modules/@types/node/vm.d.ts +1030 -0
  160. package/daemon/node_modules/@types/node/wasi.d.ts +181 -0
  161. package/daemon/node_modules/@types/node/web-globals/abortcontroller.d.ts +34 -0
  162. package/daemon/node_modules/@types/node/web-globals/domexception.d.ts +68 -0
  163. package/daemon/node_modules/@types/node/web-globals/events.d.ts +94 -0
  164. package/daemon/node_modules/@types/node/web-globals/fetch.d.ts +46 -0
  165. package/daemon/node_modules/@types/node/worker_threads.d.ts +743 -0
  166. package/daemon/node_modules/@types/node/zlib.d.ts +539 -0
  167. package/package.json +9 -2
  168. package/backend/node_modules/@eslint/eslintrc/LICENSE +0 -19
  169. package/backend/node_modules/@eslint/eslintrc/README.md +0 -115
  170. package/backend/node_modules/@eslint/eslintrc/conf/config-schema.js +0 -79
  171. package/backend/node_modules/@eslint/eslintrc/conf/environments.js +0 -215
  172. package/backend/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs +0 -1104
  173. package/backend/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs.map +0 -1
  174. package/backend/node_modules/@eslint/eslintrc/dist/eslintrc.cjs +0 -4344
  175. package/backend/node_modules/@eslint/eslintrc/dist/eslintrc.cjs.map +0 -1
  176. package/backend/node_modules/@eslint/eslintrc/lib/cascading-config-array-factory.js +0 -532
  177. package/backend/node_modules/@eslint/eslintrc/lib/config-array/config-array.js +0 -523
  178. package/backend/node_modules/@eslint/eslintrc/lib/config-array/config-dependency.js +0 -124
  179. package/backend/node_modules/@eslint/eslintrc/lib/config-array/extracted-config.js +0 -145
  180. package/backend/node_modules/@eslint/eslintrc/lib/config-array/ignore-pattern.js +0 -238
  181. package/backend/node_modules/@eslint/eslintrc/lib/config-array/index.js +0 -19
  182. package/backend/node_modules/@eslint/eslintrc/lib/config-array/override-tester.js +0 -225
  183. package/backend/node_modules/@eslint/eslintrc/lib/config-array-factory.js +0 -1151
  184. package/backend/node_modules/@eslint/eslintrc/lib/flat-compat.js +0 -318
  185. package/backend/node_modules/@eslint/eslintrc/lib/index-universal.js +0 -29
  186. package/backend/node_modules/@eslint/eslintrc/lib/index.js +0 -56
  187. package/backend/node_modules/@eslint/eslintrc/lib/shared/ajv.js +0 -191
  188. package/backend/node_modules/@eslint/eslintrc/lib/shared/config-ops.js +0 -135
  189. package/backend/node_modules/@eslint/eslintrc/lib/shared/config-validator.js +0 -325
  190. package/backend/node_modules/@eslint/eslintrc/lib/shared/deprecation-warnings.js +0 -63
  191. package/backend/node_modules/@eslint/eslintrc/lib/shared/naming.js +0 -96
  192. package/backend/node_modules/@eslint/eslintrc/lib/shared/relative-module-resolver.js +0 -42
  193. package/backend/node_modules/@eslint/eslintrc/lib/shared/types.js +0 -149
  194. package/backend/node_modules/@eslint/eslintrc/package.json +0 -82
  195. package/backend/node_modules/@eslint/eslintrc/universal.js +0 -9
  196. package/backend/node_modules/@typescript-eslint/eslint-plugin/LICENSE +0 -21
  197. package/backend/node_modules/@typescript-eslint/eslint-plugin/README.md +0 -12
  198. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/all.js +0 -156
  199. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/all.js.map +0 -1
  200. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js +0 -13
  201. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js.map +0 -1
  202. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/disable-type-checked.js +0 -64
  203. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/disable-type-checked.js.map +0 -1
  204. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended.js +0 -31
  205. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended.js.map +0 -1
  206. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/recommended-type-checked.js +0 -54
  207. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/recommended-type-checked.js.map +0 -1
  208. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/recommended.js +0 -33
  209. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/recommended.js.map +0 -1
  210. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/strict-type-checked.js +0 -79
  211. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/strict-type-checked.js.map +0 -1
  212. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/strict.js +0 -43
  213. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/strict.js.map +0 -1
  214. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/stylistic-type-checked.js +0 -35
  215. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/stylistic-type-checked.js.map +0 -1
  216. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/stylistic.js +0 -29
  217. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/configs/stylistic.js.map +0 -1
  218. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/index.js +0 -39
  219. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/index.js.map +0 -1
  220. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/adjacent-overload-signatures.js +0 -140
  221. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/adjacent-overload-signatures.js.map +0 -1
  222. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/array-type.js +0 -222
  223. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/array-type.js.map +0 -1
  224. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/await-thenable.js +0 -76
  225. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/await-thenable.js.map +0 -1
  226. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-ts-comment.js +0 -156
  227. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-ts-comment.js.map +0 -1
  228. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-tslint-comment.js +0 -56
  229. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-tslint-comment.js.map +0 -1
  230. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-types.js +0 -240
  231. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-types.js.map +0 -1
  232. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/block-spacing.js +0 -140
  233. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/block-spacing.js.map +0 -1
  234. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/brace-style.js +0 -99
  235. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/brace-style.js.map +0 -1
  236. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/class-literal-property-style.js +0 -123
  237. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/class-literal-property-style.js.map +0 -1
  238. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/class-methods-use-this.js +0 -211
  239. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/class-methods-use-this.js.map +0 -1
  240. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/comma-dangle.js +0 -166
  241. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/comma-dangle.js.map +0 -1
  242. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/comma-spacing.js +0 -152
  243. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/comma-spacing.js.map +0 -1
  244. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-generic-constructors.js +0 -109
  245. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-generic-constructors.js.map +0 -1
  246. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-indexed-object-style.js +0 -128
  247. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-indexed-object-style.js.map +0 -1
  248. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-assertions.js +0 -222
  249. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-assertions.js.map +0 -1
  250. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-definitions.js +0 -98
  251. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-definitions.js.map +0 -1
  252. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-exports.js +0 -245
  253. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-exports.js.map +0 -1
  254. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-imports.js +0 -635
  255. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-imports.js.map +0 -1
  256. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/default-param-last.js +0 -63
  257. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/default-param-last.js.map +0 -1
  258. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/dot-notation.js +0 -120
  259. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/dot-notation.js.map +0 -1
  260. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/enum-utils/shared.js +0 -112
  261. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/enum-utils/shared.js.map +0 -1
  262. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-function-return-type.js +0 -164
  263. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-function-return-type.js.map +0 -1
  264. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-member-accessibility.js +0 -283
  265. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-member-accessibility.js.map +0 -1
  266. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-module-boundary-types.js +0 -366
  267. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-module-boundary-types.js.map +0 -1
  268. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/func-call-spacing.js +0 -147
  269. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/func-call-spacing.js.map +0 -1
  270. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/indent.js +0 -415
  271. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/indent.js.map +0 -1
  272. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/index.js +0 -288
  273. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/index.js.map +0 -1
  274. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/init-declarations.js +0 -48
  275. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/init-declarations.js.map +0 -1
  276. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/key-spacing.js +0 -322
  277. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/key-spacing.js.map +0 -1
  278. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/keyword-spacing.js +0 -95
  279. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/keyword-spacing.js.map +0 -1
  280. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/lines-around-comment.js +0 -357
  281. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/lines-around-comment.js.map +0 -1
  282. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/lines-between-class-members.js +0 -57
  283. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/lines-between-class-members.js.map +0 -1
  284. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/max-params.js +0 -67
  285. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/max-params.js.map +0 -1
  286. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/member-delimiter-style.js +0 -258
  287. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/member-delimiter-style.js.map +0 -1
  288. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/member-ordering.js +0 -747
  289. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/member-ordering.js.map +0 -1
  290. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/method-signature-style.js +0 -181
  291. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/method-signature-style.js.map +0 -1
  292. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/enums.js +0 -101
  293. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/enums.js.map +0 -1
  294. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/format.js +0 -91
  295. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/format.js.map +0 -1
  296. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/index.js +0 -12
  297. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/index.js.map +0 -1
  298. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/parse-options.js +0 -75
  299. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/parse-options.js.map +0 -1
  300. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/schema.js +0 -291
  301. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/schema.js.map +0 -1
  302. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/shared.js +0 -18
  303. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/shared.js.map +0 -1
  304. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/types.js +0 -3
  305. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/types.js.map +0 -1
  306. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/validator.js +0 -351
  307. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/validator.js.map +0 -1
  308. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention.js +0 -488
  309. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention.js.map +0 -1
  310. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-array-constructor.js +0 -53
  311. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-array-constructor.js.map +0 -1
  312. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-array-delete.js +0 -83
  313. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-array-delete.js.map +0 -1
  314. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-base-to-string.js +0 -164
  315. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-base-to-string.js.map +0 -1
  316. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-confusing-non-null-assertion.js +0 -78
  317. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-confusing-non-null-assertion.js.map +0 -1
  318. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-confusing-void-expression.js +0 -293
  319. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-confusing-void-expression.js.map +0 -1
  320. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-dupe-class-members.js +0 -51
  321. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-dupe-class-members.js.map +0 -1
  322. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-duplicate-enum-values.js +0 -62
  323. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-duplicate-enum-values.js.map +0 -1
  324. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-duplicate-type-constituents.js +0 -139
  325. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-duplicate-type-constituents.js.map +0 -1
  326. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-dynamic-delete.js +0 -95
  327. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-dynamic-delete.js.map +0 -1
  328. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-empty-function.js +0 -132
  329. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-empty-function.js.map +0 -1
  330. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-empty-interface.js +0 -94
  331. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-empty-interface.js.map +0 -1
  332. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-explicit-any.js +0 -170
  333. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-explicit-any.js.map +0 -1
  334. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-non-null-assertion.js +0 -36
  335. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-non-null-assertion.js.map +0 -1
  336. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-parens.js +0 -297
  337. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-parens.js.map +0 -1
  338. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-semi.js +0 -43
  339. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-semi.js.map +0 -1
  340. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extraneous-class.js +0 -112
  341. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extraneous-class.js.map +0 -1
  342. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-floating-promises.js +0 -342
  343. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-floating-promises.js.map +0 -1
  344. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-for-in-array.js +0 -60
  345. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-for-in-array.js.map +0 -1
  346. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-implied-eval.js +0 -160
  347. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-implied-eval.js.map +0 -1
  348. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-import-type-side-effects.js +0 -56
  349. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-import-type-side-effects.js.map +0 -1
  350. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-inferrable-types.js +0 -185
  351. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-inferrable-types.js.map +0 -1
  352. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-invalid-this.js +0 -76
  353. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-invalid-this.js.map +0 -1
  354. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-invalid-void-type.js +0 -182
  355. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-invalid-void-type.js.map +0 -1
  356. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-loop-func.js +0 -169
  357. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-loop-func.js.map +0 -1
  358. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-loss-of-precision.js +0 -39
  359. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-loss-of-precision.js.map +0 -1
  360. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-magic-numbers.js +0 -213
  361. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-magic-numbers.js.map +0 -1
  362. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-meaningless-void-operator.js +0 -96
  363. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-meaningless-void-operator.js.map +0 -1
  364. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-new.js +0 -82
  365. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-new.js.map +0 -1
  366. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-promises.js +0 -523
  367. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-promises.js.map +0 -1
  368. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-mixed-enums.js +0 -193
  369. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-mixed-enums.js.map +0 -1
  370. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-namespace.js +0 -63
  371. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-namespace.js.map +0 -1
  372. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-asserted-nullish-coalescing.js +0 -76
  373. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-asserted-nullish-coalescing.js.map +0 -1
  374. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-asserted-optional-chain.js +0 -66
  375. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-asserted-optional-chain.js.map +0 -1
  376. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-assertion.js +0 -104
  377. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-assertion.js.map +0 -1
  378. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-redeclare.js +0 -201
  379. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-redeclare.js.map +0 -1
  380. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-redundant-type-constituents.js +0 -372
  381. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-redundant-type-constituents.js.map +0 -1
  382. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-require-imports.js +0 -90
  383. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-require-imports.js.map +0 -1
  384. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-restricted-imports.js +0 -237
  385. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-restricted-imports.js.map +0 -1
  386. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-shadow.js +0 -482
  387. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-shadow.js.map +0 -1
  388. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-this-alias.js +0 -65
  389. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-this-alias.js.map +0 -1
  390. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-throw-literal.js +0 -96
  391. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-throw-literal.js.map +0 -1
  392. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-type-alias.js +0 -260
  393. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-type-alias.js.map +0 -1
  394. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-boolean-literal-compare.js +0 -234
  395. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-boolean-literal-compare.js.map +0 -1
  396. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-condition.js +0 -540
  397. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-condition.js.map +0 -1
  398. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-qualifier.js +0 -149
  399. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-qualifier.js.map +0 -1
  400. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-arguments.js +0 -150
  401. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-arguments.js.map +0 -1
  402. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-assertion.js +0 -252
  403. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-assertion.js.map +0 -1
  404. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-constraint.js +0 -112
  405. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-constraint.js.map +0 -1
  406. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-argument.js +0 -226
  407. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-argument.js.map +0 -1
  408. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-assignment.js +0 -282
  409. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-assignment.js.map +0 -1
  410. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-call.js +0 -83
  411. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-call.js.map +0 -1
  412. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-declaration-merging.js +0 -56
  413. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-declaration-merging.js.map +0 -1
  414. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-enum-comparison.js +0 -168
  415. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-enum-comparison.js.map +0 -1
  416. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-member-access.js +0 -123
  417. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-member-access.js.map +0 -1
  418. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-return.js +0 -161
  419. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-return.js.map +0 -1
  420. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-unary-minus.js +0 -68
  421. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-unary-minus.js.map +0 -1
  422. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-expressions.js +0 -58
  423. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-expressions.js.map +0 -1
  424. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-vars.js +0 -490
  425. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-vars.js.map +0 -1
  426. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-use-before-define.js +0 -297
  427. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-use-before-define.js.map +0 -1
  428. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-constructor.js +0 -59
  429. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-constructor.js.map +0 -1
  430. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-empty-export.js +0 -72
  431. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-empty-export.js.map +0 -1
  432. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-template-literals.js +0 -138
  433. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-template-literals.js.map +0 -1
  434. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-var-requires.js +0 -67
  435. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-var-requires.js.map +0 -1
  436. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/non-nullable-type-assertion-style.js +0 -125
  437. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/non-nullable-type-assertion-style.js.map +0 -1
  438. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/object-curly-spacing.js +0 -226
  439. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/object-curly-spacing.js.map +0 -1
  440. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/padding-line-between-statements.js +0 -634
  441. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/padding-line-between-statements.js.map +0 -1
  442. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/parameter-properties.js +0 -171
  443. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/parameter-properties.js.map +0 -1
  444. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-as-const.js +0 -73
  445. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-as-const.js.map +0 -1
  446. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-destructuring.js +0 -200
  447. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-destructuring.js.map +0 -1
  448. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-enum-initializers.js +0 -65
  449. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-enum-initializers.js.map +0 -1
  450. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-find.js +0 -235
  451. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-find.js.map +0 -1
  452. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-for-of.js +0 -156
  453. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-for-of.js.map +0 -1
  454. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-function-type.js +0 -186
  455. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-function-type.js.map +0 -1
  456. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-includes.js +0 -231
  457. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-includes.js.map +0 -1
  458. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-literal-enum-member.js +0 -72
  459. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-literal-enum-member.js.map +0 -1
  460. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-namespace-keyword.js +0 -46
  461. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-namespace-keyword.js.map +0 -1
  462. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-nullish-coalescing.js +0 -348
  463. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-nullish-coalescing.js.map +0 -1
  464. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/PreferOptionalChainOptions.js +0 -3
  465. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/PreferOptionalChainOptions.js.map +0 -1
  466. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/analyzeChain.js +0 -417
  467. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/analyzeChain.js.map +0 -1
  468. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/compareNodes.js +0 -318
  469. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/compareNodes.js.map +0 -1
  470. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/gatherLogicalOperands.js +0 -279
  471. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/gatherLogicalOperands.js.map +0 -1
  472. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain.js +0 -175
  473. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain.js.map +0 -1
  474. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-promise-reject-errors.js +0 -107
  475. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-promise-reject-errors.js.map +0 -1
  476. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-readonly-parameter-types.js +0 -82
  477. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-readonly-parameter-types.js.map +0 -1
  478. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-readonly.js +0 -315
  479. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-readonly.js.map +0 -1
  480. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-reduce-type-parameter.js +0 -74
  481. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-reduce-type-parameter.js.map +0 -1
  482. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-regexp-exec.js +0 -159
  483. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-regexp-exec.js.map +0 -1
  484. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-return-this-type.js +0 -137
  485. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-return-this-type.js.map +0 -1
  486. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-string-starts-ends-with.js +0 -508
  487. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-string-starts-ends-with.js.map +0 -1
  488. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-ts-expect-error.js +0 -62
  489. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-ts-expect-error.js.map +0 -1
  490. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/promise-function-async.js +0 -182
  491. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/promise-function-async.js.map +0 -1
  492. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/quotes.js +0 -63
  493. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/quotes.js.map +0 -1
  494. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/require-array-sort-compare.js +0 -62
  495. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/require-array-sort-compare.js.map +0 -1
  496. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/require-await.js +0 -212
  497. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/require-await.js.map +0 -1
  498. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/restrict-plus-operands.js +0 -211
  499. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/restrict-plus-operands.js.map +0 -1
  500. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/restrict-template-expressions.js +0 -145
  501. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/restrict-template-expressions.js.map +0 -1
  502. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/return-await.js +0 -268
  503. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/return-await.js.map +0 -1
  504. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/semi.js +0 -64
  505. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/semi.js.map +0 -1
  506. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/sort-type-constituents.js +0 -228
  507. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/sort-type-constituents.js.map +0 -1
  508. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/space-before-blocks.js +0 -80
  509. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/space-before-blocks.js.map +0 -1
  510. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/space-before-function-paren.js +0 -143
  511. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/space-before-function-paren.js.map +0 -1
  512. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/space-infix-ops.js +0 -133
  513. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/space-infix-ops.js.map +0 -1
  514. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/strict-boolean-expressions.js +0 -800
  515. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/strict-boolean-expressions.js.map +0 -1
  516. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/switch-exhaustiveness-check.js +0 -242
  517. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/switch-exhaustiveness-check.js.map +0 -1
  518. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/triple-slash-reference.js +0 -110
  519. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/triple-slash-reference.js.map +0 -1
  520. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/type-annotation-spacing.js +0 -228
  521. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/type-annotation-spacing.js.map +0 -1
  522. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/typedef.js +0 -200
  523. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/typedef.js.map +0 -1
  524. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/unbound-method.js +0 -245
  525. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/unbound-method.js.map +0 -1
  526. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/unified-signatures.js +0 -398
  527. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/rules/unified-signatures.js.map +0 -1
  528. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/astUtils.js +0 -89
  529. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/astUtils.js.map +0 -1
  530. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/collectUnusedVariables.js +0 -562
  531. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/collectUnusedVariables.js.map +0 -1
  532. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/createRule.js +0 -6
  533. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/createRule.js.map +0 -1
  534. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/escapeRegExp.js +0 -16
  535. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/escapeRegExp.js.map +0 -1
  536. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/explicitReturnTypeUtils.js +0 -241
  537. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/explicitReturnTypeUtils.js.map +0 -1
  538. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getESLintCoreRule.js +0 -45
  539. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getESLintCoreRule.js.map +0 -1
  540. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getFunctionHeadLoc.js +0 -163
  541. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getFunctionHeadLoc.js.map +0 -1
  542. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getOperatorPrecedence.js +0 -418
  543. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getOperatorPrecedence.js.map +0 -1
  544. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getStaticStringValue.js +0 -46
  545. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getStaticStringValue.js.map +0 -1
  546. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getStringLength.js +0 -20
  547. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getStringLength.js.map +0 -1
  548. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getThisExpression.js +0 -26
  549. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getThisExpression.js.map +0 -1
  550. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getWrappedCode.js +0 -8
  551. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getWrappedCode.js.map +0 -1
  552. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getWrappingFixer.js +0 -155
  553. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/getWrappingFixer.js.map +0 -1
  554. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/index.js +0 -42
  555. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/index.js.map +0 -1
  556. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/isNodeEqual.js +0 -27
  557. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/isNodeEqual.js.map +0 -1
  558. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/isNullLiteral.js +0 -9
  559. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/isNullLiteral.js.map +0 -1
  560. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/isUndefinedIdentifier.js +0 -9
  561. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/isUndefinedIdentifier.js.map +0 -1
  562. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/misc.js +0 -189
  563. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/misc.js.map +0 -1
  564. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/objectIterators.js +0 -27
  565. package/backend/node_modules/@typescript-eslint/eslint-plugin/dist/util/objectIterators.js.map +0 -1
  566. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/README.md +0 -60
  567. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/TEMPLATE.md +0 -30
  568. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/adjacent-overload-signatures.md +0 -99
  569. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/array-type.md +0 -111
  570. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/await-thenable.md +0 -42
  571. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/ban-ts-comment.md +0 -151
  572. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/ban-tslint-comment.md +0 -39
  573. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/ban-types.md +0 -132
  574. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/block-spacing.md +0 -10
  575. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/brace-style.md +0 -10
  576. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/camelcase.md +0 -13
  577. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/class-literal-property-style.md +0 -105
  578. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/class-methods-use-this.md +0 -96
  579. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/comma-dangle.md +0 -20
  580. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/comma-spacing.md +0 -10
  581. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/consistent-generic-constructors.md +0 -76
  582. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/consistent-indexed-object-style.md +0 -80
  583. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/consistent-type-assertions.md +0 -113
  584. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/consistent-type-definitions.md +0 -81
  585. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/consistent-type-exports.md +0 -105
  586. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/consistent-type-imports.md +0 -108
  587. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/default-param-last.md +0 -58
  588. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/dot-notation.md +0 -82
  589. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/explicit-function-return-type.md +0 -320
  590. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/explicit-member-accessibility.md +0 -344
  591. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/explicit-module-boundary-types.md +0 -249
  592. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/func-call-spacing.md +0 -10
  593. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/indent.md +0 -18
  594. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/init-declarations.md +0 -10
  595. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/key-spacing.md +0 -10
  596. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/keyword-spacing.md +0 -10
  597. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/lines-around-comment.md +0 -25
  598. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/lines-between-class-members.md +0 -55
  599. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/max-params.md +0 -10
  600. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/member-delimiter-style.md +0 -164
  601. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/member-ordering.md +0 -1438
  602. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/method-signature-style.md +0 -113
  603. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/naming-convention.md +0 -721
  604. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-array-constructor.md +0 -29
  605. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-array-delete.md +0 -40
  606. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-base-to-string.md +0 -88
  607. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-confusing-non-null-assertion.md +0 -56
  608. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-confusing-void-expression.md +0 -116
  609. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-dupe-class-members.md +0 -14
  610. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-duplicate-enum-values.md +0 -58
  611. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-duplicate-imports.md +0 -13
  612. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-duplicate-type-constituents.md +0 -66
  613. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-dynamic-delete.md +0 -53
  614. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-empty-function.md +0 -92
  615. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-empty-interface.md +0 -59
  616. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-explicit-any.md +0 -168
  617. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-extra-non-null-assertion.md +0 -54
  618. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-extra-parens.md +0 -10
  619. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-extra-semi.md +0 -12
  620. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-extraneous-class.md +0 -295
  621. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-floating-promises.md +0 -124
  622. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-for-in-array.md +0 -61
  623. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-implied-eval.md +0 -102
  624. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-import-type-side-effects.md +0 -74
  625. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-inferrable-types.md +0 -103
  626. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-invalid-this.md +0 -14
  627. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-invalid-void-type.md +0 -112
  628. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-loop-func.md +0 -10
  629. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-loss-of-precision.md +0 -10
  630. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-magic-numbers.md +0 -119
  631. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-meaningless-void-operator.md +0 -53
  632. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-misused-new.md +0 -47
  633. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-misused-promises.md +0 -246
  634. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-mixed-enums.md +0 -88
  635. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-namespace.md +0 -131
  636. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-non-null-asserted-nullish-coalescing.md +0 -54
  637. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-non-null-asserted-optional-chain.md +0 -40
  638. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-non-null-assertion.md +0 -42
  639. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-parameter-properties.md +0 -12
  640. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-redeclare.md +0 -75
  641. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-redundant-type-constituents.md +0 -92
  642. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-require-imports.md +0 -60
  643. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-restricted-imports.md +0 -71
  644. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-shadow.md +0 -105
  645. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-this-alias.md +0 -108
  646. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-throw-literal.md +0 -109
  647. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-type-alias.md +0 -623
  648. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unnecessary-boolean-literal-compare.md +0 -133
  649. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unnecessary-condition.md +0 -119
  650. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unnecessary-qualifier.md +0 -51
  651. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unnecessary-type-arguments.md +0 -79
  652. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unnecessary-type-assertion.md +0 -77
  653. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unnecessary-type-constraint.md +0 -55
  654. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unsafe-argument.md +0 -93
  655. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unsafe-assignment.md +0 -96
  656. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unsafe-call.md +0 -68
  657. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unsafe-declaration-merging.md +0 -59
  658. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unsafe-enum-comparison.md +0 -82
  659. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unsafe-member-access.md +0 -74
  660. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unsafe-return.md +0 -113
  661. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unsafe-unary-minus.md +0 -52
  662. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unused-expressions.md +0 -10
  663. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unused-vars.md +0 -27
  664. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-use-before-define.md +0 -87
  665. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-useless-constructor.md +0 -19
  666. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-useless-empty-export.md +0 -47
  667. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-useless-template-literals.md +0 -57
  668. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-var-requires.md +0 -60
  669. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/non-nullable-type-assertion-style.md +0 -41
  670. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/object-curly-spacing.md +0 -10
  671. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/padding-line-between-statements.md +0 -33
  672. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/parameter-properties.md +0 -488
  673. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-as-const.md +0 -47
  674. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-destructuring.md +0 -91
  675. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-enum-initializers.md +0 -62
  676. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-find.md +0 -39
  677. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-for-of.md +0 -44
  678. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-function-type.md +0 -92
  679. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-includes.md +0 -75
  680. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-literal-enum-member.md +0 -103
  681. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-namespace-keyword.md +0 -47
  682. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-nullish-coalescing.md +0 -187
  683. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-optional-chain.md +0 -263
  684. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-promise-reject-errors.md +0 -50
  685. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-readonly-parameter-types.md +0 -389
  686. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-readonly.md +0 -102
  687. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-reduce-type-parameter.md +0 -60
  688. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-regexp-exec.md +0 -46
  689. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-return-this-type.md +0 -87
  690. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-string-starts-ends-with.md +0 -58
  691. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-ts-expect-error.md +0 -70
  692. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/promise-function-async.md +0 -132
  693. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/quotes.md +0 -10
  694. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/require-array-sort-compare.md +0 -78
  695. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/require-await.md +0 -22
  696. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/restrict-plus-operands.md +0 -208
  697. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/restrict-template-expressions.md +0 -121
  698. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/return-await.md +0 -216
  699. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/semi.md +0 -12
  700. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/sort-type-constituents.md +0 -163
  701. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/space-before-blocks.md +0 -43
  702. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/space-before-function-paren.md +0 -10
  703. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/space-infix-ops.md +0 -16
  704. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/strict-boolean-expressions.md +0 -190
  705. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/switch-exhaustiveness-check.md +0 -225
  706. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/triple-slash-reference.md +0 -110
  707. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/type-annotation-spacing.md +0 -317
  708. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/typedef.md +0 -320
  709. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/unbound-method.md +0 -105
  710. package/backend/node_modules/@typescript-eslint/eslint-plugin/docs/rules/unified-signatures.md +0 -77
  711. package/backend/node_modules/@typescript-eslint/eslint-plugin/index.d.ts +0 -9
  712. package/backend/node_modules/@typescript-eslint/eslint-plugin/package.json +0 -106
  713. package/backend/node_modules/@typescript-eslint/eslint-plugin/rules.d.ts +0 -45
  714. package/backend/node_modules/@typescript-eslint/parser/LICENSE +0 -22
  715. package/backend/node_modules/@typescript-eslint/parser/README.md +0 -12
  716. package/backend/node_modules/@typescript-eslint/parser/dist/index.d.ts +0 -8
  717. package/backend/node_modules/@typescript-eslint/parser/dist/index.d.ts.map +0 -1
  718. package/backend/node_modules/@typescript-eslint/parser/dist/index.js +0 -17
  719. package/backend/node_modules/@typescript-eslint/parser/dist/index.js.map +0 -1
  720. package/backend/node_modules/@typescript-eslint/parser/dist/parser.d.ts +0 -20
  721. package/backend/node_modules/@typescript-eslint/parser/dist/parser.d.ts.map +0 -1
  722. package/backend/node_modules/@typescript-eslint/parser/dist/parser.js +0 -130
  723. package/backend/node_modules/@typescript-eslint/parser/dist/parser.js.map +0 -1
  724. package/backend/node_modules/@typescript-eslint/parser/package.json +0 -85
  725. package/backend/node_modules/@typescript-eslint/scope-manager/LICENSE +0 -21
  726. package/backend/node_modules/@typescript-eslint/scope-manager/README.md +0 -10
  727. package/backend/node_modules/@typescript-eslint/scope-manager/dist/ID.d.ts +0 -4
  728. package/backend/node_modules/@typescript-eslint/scope-manager/dist/ID.d.ts.map +0 -1
  729. package/backend/node_modules/@typescript-eslint/scope-manager/dist/ID.js +0 -21
  730. package/backend/node_modules/@typescript-eslint/scope-manager/dist/ID.js.map +0 -1
  731. package/backend/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.d.ts +0 -72
  732. package/backend/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.d.ts.map +0 -1
  733. package/backend/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.js +0 -183
  734. package/backend/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.js.map +0 -1
  735. package/backend/node_modules/@typescript-eslint/scope-manager/dist/analyze.d.ts +0 -56
  736. package/backend/node_modules/@typescript-eslint/scope-manager/dist/analyze.d.ts.map +0 -1
  737. package/backend/node_modules/@typescript-eslint/scope-manager/dist/analyze.js +0 -42
  738. package/backend/node_modules/@typescript-eslint/scope-manager/dist/analyze.js.map +0 -1
  739. package/backend/node_modules/@typescript-eslint/scope-manager/dist/assert.d.ts +0 -3
  740. package/backend/node_modules/@typescript-eslint/scope-manager/dist/assert.d.ts.map +0 -1
  741. package/backend/node_modules/@typescript-eslint/scope-manager/dist/assert.js +0 -11
  742. package/backend/node_modules/@typescript-eslint/scope-manager/dist/assert.js.map +0 -1
  743. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.d.ts +0 -10
  744. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.d.ts.map +0 -1
  745. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.js +0 -14
  746. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.js.map +0 -1
  747. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.d.ts +0 -10
  748. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.d.ts.map +0 -1
  749. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.js +0 -14
  750. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.js.map +0 -1
  751. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.d.ts +0 -14
  752. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.d.ts.map +0 -1
  753. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.js +0 -3
  754. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.js.map +0 -1
  755. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.d.ts +0 -39
  756. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.d.ts.map +0 -1
  757. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.js +0 -19
  758. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.js.map +0 -1
  759. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.d.ts +0 -15
  760. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.d.ts.map +0 -1
  761. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.js +0 -18
  762. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.js.map +0 -1
  763. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.d.ts +0 -10
  764. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.d.ts.map +0 -1
  765. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.js +0 -14
  766. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.js.map +0 -1
  767. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.d.ts +0 -10
  768. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.d.ts.map +0 -1
  769. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.js +0 -14
  770. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.js.map +0 -1
  771. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.d.ts +0 -11
  772. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.d.ts.map +0 -1
  773. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.js +0 -14
  774. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.js.map +0 -1
  775. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.d.ts +0 -14
  776. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.d.ts.map +0 -1
  777. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.js +0 -15
  778. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.js.map +0 -1
  779. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.d.ts +0 -10
  780. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.d.ts.map +0 -1
  781. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.js +0 -14
  782. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.js.map +0 -1
  783. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.d.ts +0 -10
  784. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.d.ts.map +0 -1
  785. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.js +0 -14
  786. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.js.map +0 -1
  787. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.d.ts +0 -10
  788. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.d.ts.map +0 -1
  789. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.js +0 -14
  790. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.js.map +0 -1
  791. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.d.ts +0 -10
  792. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.d.ts.map +0 -1
  793. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.js +0 -14
  794. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.js.map +0 -1
  795. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.d.ts +0 -10
  796. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.d.ts.map +0 -1
  797. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.js +0 -14
  798. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.js.map +0 -1
  799. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/index.d.ts +0 -14
  800. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/index.d.ts.map +0 -1
  801. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/index.js +0 -30
  802. package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/index.js.map +0 -1
  803. package/backend/node_modules/@typescript-eslint/scope-manager/dist/index.d.ts +0 -9
  804. package/backend/node_modules/@typescript-eslint/scope-manager/dist/index.d.ts.map +0 -1
  805. package/backend/node_modules/@typescript-eslint/scope-manager/dist/index.js +0 -31
  806. package/backend/node_modules/@typescript-eslint/scope-manager/dist/index.js.map +0 -1
  807. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.d.ts +0 -16
  808. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.d.ts.map +0 -1
  809. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.js +0 -23
  810. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.js.map +0 -1
  811. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.d.ts +0 -3
  812. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.d.ts.map +0 -1
  813. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.js +0 -23
  814. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.js.map +0 -1
  815. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.legacy.d.ts +0 -3
  816. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.legacy.d.ts.map +0 -1
  817. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.legacy.js +0 -15
  818. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.legacy.js.map +0 -1
  819. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.d.ts +0 -3
  820. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.d.ts.map +0 -1
  821. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.d.ts +0 -3
  822. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.d.ts.map +0 -1
  823. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.js +0 -75
  824. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.js.map +0 -1
  825. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.js +0 -1436
  826. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.js.map +0 -1
  827. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.d.ts +0 -3
  828. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.d.ts.map +0 -1
  829. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.js +0 -21
  830. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.js.map +0 -1
  831. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.d.ts +0 -3
  832. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.d.ts.map +0 -1
  833. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.js +0 -23
  834. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.js.map +0 -1
  835. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.d.ts +0 -3
  836. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.d.ts.map +0 -1
  837. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.d.ts +0 -3
  838. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.d.ts.map +0 -1
  839. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.js +0 -16
  840. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.js.map +0 -1
  841. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.d.ts +0 -3
  842. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.d.ts.map +0 -1
  843. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.js +0 -55
  844. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.js.map +0 -1
  845. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.js +0 -30
  846. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.js.map +0 -1
  847. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.d.ts +0 -3
  848. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.d.ts.map +0 -1
  849. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.js +0 -12
  850. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.js.map +0 -1
  851. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.d.ts +0 -3
  852. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.d.ts.map +0 -1
  853. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.js +0 -13
  854. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.js.map +0 -1
  855. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.d.ts +0 -3
  856. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.d.ts.map +0 -1
  857. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.js +0 -12
  858. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.js.map +0 -1
  859. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.d.ts +0 -3
  860. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.d.ts.map +0 -1
  861. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.js +0 -12
  862. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.js.map +0 -1
  863. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.d.ts +0 -3
  864. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.d.ts.map +0 -1
  865. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.js +0 -46
  866. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.js.map +0 -1
  867. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.d.ts +0 -3
  868. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.d.ts.map +0 -1
  869. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.js +0 -22
  870. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.js.map +0 -1
  871. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.d.ts +0 -3
  872. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.d.ts.map +0 -1
  873. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.d.ts +0 -3
  874. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.d.ts.map +0 -1
  875. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.js +0 -20
  876. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.js.map +0 -1
  877. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.js +0 -14
  878. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.js.map +0 -1
  879. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.d.ts +0 -3
  880. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.d.ts.map +0 -1
  881. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.date.d.ts +0 -3
  882. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.date.d.ts.map +0 -1
  883. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.date.js +0 -12
  884. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.date.js.map +0 -1
  885. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.d.ts +0 -3
  886. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.d.ts.map +0 -1
  887. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.js +0 -20
  888. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.js.map +0 -1
  889. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.d.ts +0 -3
  890. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.d.ts.map +0 -1
  891. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.js +0 -12
  892. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.js.map +0 -1
  893. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.js +0 -24
  894. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.js.map +0 -1
  895. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.d.ts +0 -3
  896. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.d.ts.map +0 -1
  897. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.js +0 -12
  898. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.js.map +0 -1
  899. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.d.ts +0 -3
  900. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.d.ts.map +0 -1
  901. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.js +0 -19
  902. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.js.map +0 -1
  903. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.d.ts +0 -3
  904. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.d.ts.map +0 -1
  905. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.js +0 -12
  906. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.js.map +0 -1
  907. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.d.ts +0 -3
  908. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.d.ts.map +0 -1
  909. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.js +0 -20
  910. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.js.map +0 -1
  911. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.d.ts +0 -3
  912. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.d.ts.map +0 -1
  913. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.js +0 -16
  914. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.js.map +0 -1
  915. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.d.ts +0 -3
  916. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.d.ts.map +0 -1
  917. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.js +0 -19
  918. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.js.map +0 -1
  919. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.d.ts +0 -3
  920. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.d.ts.map +0 -1
  921. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.d.ts +0 -3
  922. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.d.ts.map +0 -1
  923. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.js +0 -20
  924. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.js.map +0 -1
  925. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.d.ts +0 -3
  926. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.d.ts.map +0 -1
  927. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.js +0 -12
  928. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.js.map +0 -1
  929. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.js +0 -22
  930. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.js.map +0 -1
  931. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.d.ts +0 -3
  932. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.d.ts.map +0 -1
  933. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.js +0 -12
  934. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.js.map +0 -1
  935. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.d.ts +0 -3
  936. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.d.ts.map +0 -1
  937. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.js +0 -14
  938. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.js.map +0 -1
  939. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.d.ts +0 -3
  940. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.d.ts.map +0 -1
  941. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.js +0 -14
  942. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.js.map +0 -1
  943. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.d.ts +0 -3
  944. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.d.ts.map +0 -1
  945. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.d.ts +0 -3
  946. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.d.ts.map +0 -1
  947. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.js +0 -20
  948. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.js.map +0 -1
  949. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.intl.d.ts +0 -3
  950. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.intl.d.ts.map +0 -1
  951. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.intl.js +0 -12
  952. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.intl.js.map +0 -1
  953. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.js +0 -22
  954. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.js.map +0 -1
  955. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.d.ts +0 -3
  956. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.d.ts.map +0 -1
  957. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.js +0 -14
  958. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.js.map +0 -1
  959. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.d.ts +0 -3
  960. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.d.ts.map +0 -1
  961. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.js +0 -12
  962. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.js.map +0 -1
  963. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.d.ts +0 -3
  964. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.d.ts.map +0 -1
  965. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.js +0 -12
  966. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.js.map +0 -1
  967. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.d.ts +0 -3
  968. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.d.ts.map +0 -1
  969. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.js +0 -22
  970. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.js.map +0 -1
  971. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.d.ts +0 -3
  972. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.d.ts.map +0 -1
  973. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.date.d.ts +0 -3
  974. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.date.d.ts.map +0 -1
  975. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.date.js +0 -14
  976. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.date.js.map +0 -1
  977. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.d.ts +0 -3
  978. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.d.ts.map +0 -1
  979. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.js +0 -20
  980. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.js.map +0 -1
  981. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.d.ts +0 -3
  982. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.d.ts.map +0 -1
  983. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.js +0 -14
  984. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.js.map +0 -1
  985. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.js +0 -28
  986. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.js.map +0 -1
  987. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.number.d.ts +0 -3
  988. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.number.d.ts.map +0 -1
  989. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.number.js +0 -14
  990. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.number.js.map +0 -1
  991. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.d.ts +0 -3
  992. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.d.ts.map +0 -1
  993. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.js +0 -15
  994. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.js.map +0 -1
  995. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.d.ts +0 -3
  996. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.d.ts.map +0 -1
  997. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.js +0 -12
  998. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.js.map +0 -1
  999. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.d.ts +0 -3
  1000. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.d.ts.map +0 -1
  1001. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.js +0 -14
  1002. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.js.map +0 -1
  1003. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.d.ts +0 -3
  1004. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.d.ts.map +0 -1
  1005. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.js +0 -17
  1006. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.js.map +0 -1
  1007. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.d.ts +0 -3
  1008. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.d.ts.map +0 -1
  1009. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.d.ts +0 -3
  1010. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.d.ts.map +0 -1
  1011. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.js +0 -20
  1012. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.js.map +0 -1
  1013. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.intl.d.ts +0 -3
  1014. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.intl.d.ts.map +0 -1
  1015. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.intl.js +0 -12
  1016. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.intl.js.map +0 -1
  1017. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.js +0 -20
  1018. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.js.map +0 -1
  1019. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.d.ts +0 -3
  1020. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.d.ts.map +0 -1
  1021. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.js +0 -14
  1022. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.js.map +0 -1
  1023. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.d.ts +0 -3
  1024. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.d.ts.map +0 -1
  1025. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.js +0 -12
  1026. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.js.map +0 -1
  1027. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.d.ts +0 -3
  1028. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.d.ts.map +0 -1
  1029. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.js +0 -15
  1030. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.js.map +0 -1
  1031. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.array.d.ts +0 -3
  1032. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.array.d.ts.map +0 -1
  1033. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.array.js +0 -24
  1034. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.array.js.map +0 -1
  1035. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.d.ts +0 -3
  1036. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.d.ts.map +0 -1
  1037. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.error.d.ts +0 -3
  1038. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.error.d.ts.map +0 -1
  1039. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.error.js +0 -21
  1040. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.error.js.map +0 -1
  1041. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.full.d.ts +0 -3
  1042. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.full.d.ts.map +0 -1
  1043. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.full.js +0 -20
  1044. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.full.js.map +0 -1
  1045. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.intl.d.ts +0 -3
  1046. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.intl.d.ts.map +0 -1
  1047. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.intl.js +0 -12
  1048. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.intl.js.map +0 -1
  1049. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.js +0 -26
  1050. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.js.map +0 -1
  1051. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.object.d.ts +0 -3
  1052. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.object.d.ts.map +0 -1
  1053. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.object.js +0 -12
  1054. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.object.js.map +0 -1
  1055. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.regexp.d.ts +0 -3
  1056. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.regexp.d.ts.map +0 -1
  1057. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.regexp.js +0 -15
  1058. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.regexp.js.map +0 -1
  1059. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.sharedmemory.d.ts +0 -3
  1060. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.sharedmemory.d.ts.map +0 -1
  1061. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.sharedmemory.js +0 -12
  1062. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.sharedmemory.js.map +0 -1
  1063. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.string.d.ts +0 -3
  1064. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.string.d.ts.map +0 -1
  1065. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.string.js +0 -12
  1066. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.string.js.map +0 -1
  1067. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.array.d.ts +0 -3
  1068. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.array.d.ts.map +0 -1
  1069. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.array.js +0 -24
  1070. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.array.js.map +0 -1
  1071. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.collection.d.ts +0 -3
  1072. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.collection.d.ts.map +0 -1
  1073. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.collection.js +0 -12
  1074. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.collection.js.map +0 -1
  1075. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.d.ts +0 -3
  1076. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.d.ts.map +0 -1
  1077. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.full.d.ts +0 -3
  1078. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.full.d.ts.map +0 -1
  1079. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.full.js +0 -20
  1080. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.full.js.map +0 -1
  1081. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.js +0 -16
  1082. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.js.map +0 -1
  1083. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.d.ts +0 -3
  1084. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.d.ts.map +0 -1
  1085. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.js +0 -117
  1086. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.js.map +0 -1
  1087. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.d.ts +0 -3
  1088. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.d.ts.map +0 -1
  1089. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.js +0 -30
  1090. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.js.map +0 -1
  1091. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.d.ts +0 -3
  1092. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.d.ts.map +0 -1
  1093. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.js +0 -14
  1094. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.js.map +0 -1
  1095. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.d.ts +0 -3
  1096. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.d.ts.map +0 -1
  1097. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.js +0 -24
  1098. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.js.map +0 -1
  1099. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.d.ts +0 -3
  1100. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.d.ts.map +0 -1
  1101. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.js +0 -19
  1102. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.js.map +0 -1
  1103. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.d.ts +0 -3
  1104. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.d.ts.map +0 -1
  1105. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.js +0 -22
  1106. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.js.map +0 -1
  1107. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.collection.d.ts +0 -3
  1108. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.collection.d.ts.map +0 -1
  1109. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.collection.js +0 -12
  1110. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.collection.js.map +0 -1
  1111. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.d.ts +0 -3
  1112. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.d.ts.map +0 -1
  1113. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.decorators.d.ts +0 -3
  1114. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.decorators.d.ts.map +0 -1
  1115. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.decorators.js +0 -17
  1116. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.decorators.js.map +0 -1
  1117. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.disposable.d.ts +0 -3
  1118. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.disposable.d.ts.map +0 -1
  1119. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.disposable.js +0 -22
  1120. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.disposable.js.map +0 -1
  1121. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.d.ts +0 -3
  1122. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.d.ts.map +0 -1
  1123. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.js +0 -20
  1124. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.js.map +0 -1
  1125. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.d.ts +0 -3
  1126. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.d.ts.map +0 -1
  1127. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.js +0 -12
  1128. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.js.map +0 -1
  1129. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.js +0 -18
  1130. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.js.map +0 -1
  1131. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.d.ts +0 -3
  1132. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.d.ts.map +0 -1
  1133. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.js +0 -14
  1134. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.js.map +0 -1
  1135. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.d.ts +0 -3
  1136. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.d.ts.map +0 -1
  1137. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.js +0 -12
  1138. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.js.map +0 -1
  1139. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.d.ts +0 -3
  1140. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.d.ts.map +0 -1
  1141. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.js +0 -12
  1142. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.js.map +0 -1
  1143. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.d.ts +0 -3
  1144. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.d.ts.map +0 -1
  1145. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.js +0 -15
  1146. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.js.map +0 -1
  1147. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/index.d.ts +0 -93
  1148. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/index.d.ts.map +0 -1
  1149. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/index.js +0 -189
  1150. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/index.js.map +0 -1
  1151. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.d.ts +0 -3
  1152. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.d.ts.map +0 -1
  1153. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.js +0 -18
  1154. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.js.map +0 -1
  1155. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.d.ts +0 -3
  1156. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.d.ts.map +0 -1
  1157. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.js +0 -24
  1158. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.js.map +0 -1
  1159. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.d.ts +0 -3
  1160. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.d.ts.map +0 -1
  1161. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.d.ts +0 -3
  1162. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.d.ts.map +0 -1
  1163. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.js +0 -9
  1164. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.js.map +0 -1
  1165. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.d.ts +0 -3
  1166. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.d.ts.map +0 -1
  1167. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.js +0 -34
  1168. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.js.map +0 -1
  1169. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.js +0 -589
  1170. package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.js.map +0 -1
  1171. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.d.ts +0 -29
  1172. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.d.ts.map +0 -1
  1173. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.js +0 -311
  1174. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.js.map +0 -1
  1175. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.d.ts +0 -15
  1176. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.d.ts.map +0 -1
  1177. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.js +0 -84
  1178. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.js.map +0 -1
  1179. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.d.ts +0 -14
  1180. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.d.ts.map +0 -1
  1181. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.js +0 -50
  1182. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.js.map +0 -1
  1183. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.d.ts +0 -29
  1184. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.d.ts.map +0 -1
  1185. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.js +0 -108
  1186. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.js.map +0 -1
  1187. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.d.ts +0 -89
  1188. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.d.ts.map +0 -1
  1189. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.js +0 -107
  1190. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.js.map +0 -1
  1191. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.d.ts +0 -87
  1192. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.d.ts.map +0 -1
  1193. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.js +0 -548
  1194. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.js.map +0 -1
  1195. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.d.ts +0 -33
  1196. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.d.ts.map +0 -1
  1197. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.js +0 -230
  1198. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.js.map +0 -1
  1199. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.d.ts +0 -13
  1200. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.d.ts.map +0 -1
  1201. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.js +0 -41
  1202. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.js.map +0 -1
  1203. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.d.ts +0 -22
  1204. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.d.ts.map +0 -1
  1205. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.js +0 -80
  1206. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.js.map +0 -1
  1207. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.d.ts +0 -2
  1208. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.d.ts.map +0 -1
  1209. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.js +0 -6
  1210. package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.js.map +0 -1
  1211. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.d.ts +0 -10
  1212. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.d.ts.map +0 -1
  1213. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.js +0 -12
  1214. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.js.map +0 -1
  1215. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.d.ts +0 -10
  1216. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.d.ts.map +0 -1
  1217. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.js +0 -12
  1218. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.js.map +0 -1
  1219. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.d.ts +0 -10
  1220. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.d.ts.map +0 -1
  1221. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.js +0 -12
  1222. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.js.map +0 -1
  1223. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.d.ts +0 -10
  1224. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.d.ts.map +0 -1
  1225. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.js +0 -12
  1226. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.js.map +0 -1
  1227. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.d.ts +0 -10
  1228. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.d.ts.map +0 -1
  1229. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.js +0 -12
  1230. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.js.map +0 -1
  1231. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.d.ts +0 -10
  1232. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.d.ts.map +0 -1
  1233. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.js +0 -12
  1234. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.js.map +0 -1
  1235. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.d.ts +0 -10
  1236. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.d.ts.map +0 -1
  1237. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.js +0 -12
  1238. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.js.map +0 -1
  1239. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.d.ts +0 -11
  1240. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.d.ts.map +0 -1
  1241. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.js +0 -17
  1242. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.js.map +0 -1
  1243. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.d.ts +0 -13
  1244. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.d.ts.map +0 -1
  1245. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.js +0 -36
  1246. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.js.map +0 -1
  1247. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.d.ts +0 -10
  1248. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.d.ts.map +0 -1
  1249. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.js +0 -12
  1250. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.js.map +0 -1
  1251. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.d.ts +0 -18
  1252. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.d.ts.map +0 -1
  1253. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.js +0 -39
  1254. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.js.map +0 -1
  1255. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.d.ts +0 -10
  1256. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.d.ts.map +0 -1
  1257. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.js +0 -12
  1258. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.js.map +0 -1
  1259. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.d.ts +0 -10
  1260. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.d.ts.map +0 -1
  1261. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.js +0 -12
  1262. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.js.map +0 -1
  1263. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.d.ts +0 -21
  1264. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.d.ts.map +0 -1
  1265. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.js +0 -3
  1266. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.js.map +0 -1
  1267. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.d.ts +0 -107
  1268. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.d.ts.map +0 -1
  1269. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.js +0 -351
  1270. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.js.map +0 -1
  1271. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.d.ts +0 -22
  1272. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.d.ts.map +0 -1
  1273. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.js +0 -25
  1274. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.js.map +0 -1
  1275. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.d.ts +0 -10
  1276. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.d.ts.map +0 -1
  1277. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.js +0 -12
  1278. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.js.map +0 -1
  1279. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.d.ts +0 -10
  1280. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.d.ts.map +0 -1
  1281. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.js +0 -12
  1282. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.js.map +0 -1
  1283. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.d.ts +0 -10
  1284. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.d.ts.map +0 -1
  1285. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.js +0 -12
  1286. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.js.map +0 -1
  1287. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.d.ts +0 -10
  1288. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.d.ts.map +0 -1
  1289. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.js +0 -12
  1290. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.js.map +0 -1
  1291. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.d.ts +0 -11
  1292. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.d.ts.map +0 -1
  1293. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.js +0 -22
  1294. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.js.map +0 -1
  1295. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/index.d.ts +0 -20
  1296. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/index.d.ts.map +0 -1
  1297. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/index.js +0 -36
  1298. package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/index.js.map +0 -1
  1299. package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.d.ts +0 -34
  1300. package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.d.ts.map +0 -1
  1301. package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.js +0 -12
  1302. package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.js.map +0 -1
  1303. package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.d.ts +0 -25
  1304. package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.d.ts.map +0 -1
  1305. package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.js +0 -19
  1306. package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.js.map +0 -1
  1307. package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.d.ts +0 -18
  1308. package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.d.ts.map +0 -1
  1309. package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.js +0 -33
  1310. package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.js.map +0 -1
  1311. package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.d.ts +0 -44
  1312. package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.d.ts.map +0 -1
  1313. package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.js +0 -39
  1314. package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.js.map +0 -1
  1315. package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/index.d.ts +0 -4
  1316. package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/index.d.ts.map +0 -1
  1317. package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/index.js +0 -10
  1318. package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/index.js.map +0 -1
  1319. package/backend/node_modules/@typescript-eslint/scope-manager/package.json +0 -71
  1320. package/backend/node_modules/@typescript-eslint/type-utils/LICENSE +0 -21
  1321. package/backend/node_modules/@typescript-eslint/type-utils/README.md +0 -14
  1322. package/backend/node_modules/@typescript-eslint/type-utils/dist/TypeOrValueSpecifier.d.ts +0 -21
  1323. package/backend/node_modules/@typescript-eslint/type-utils/dist/TypeOrValueSpecifier.d.ts.map +0 -1
  1324. package/backend/node_modules/@typescript-eslint/type-utils/dist/TypeOrValueSpecifier.js +0 -188
  1325. package/backend/node_modules/@typescript-eslint/type-utils/dist/TypeOrValueSpecifier.js.map +0 -1
  1326. package/backend/node_modules/@typescript-eslint/type-utils/dist/builtinSymbolLikes.d.ts +0 -39
  1327. package/backend/node_modules/@typescript-eslint/type-utils/dist/builtinSymbolLikes.d.ts.map +0 -1
  1328. package/backend/node_modules/@typescript-eslint/type-utils/dist/builtinSymbolLikes.js +0 -130
  1329. package/backend/node_modules/@typescript-eslint/type-utils/dist/builtinSymbolLikes.js.map +0 -1
  1330. package/backend/node_modules/@typescript-eslint/type-utils/dist/containsAllTypesByName.d.ts +0 -10
  1331. package/backend/node_modules/@typescript-eslint/type-utils/dist/containsAllTypesByName.d.ts.map +0 -1
  1332. package/backend/node_modules/@typescript-eslint/type-utils/dist/containsAllTypesByName.js +0 -61
  1333. package/backend/node_modules/@typescript-eslint/type-utils/dist/containsAllTypesByName.js.map +0 -1
  1334. package/backend/node_modules/@typescript-eslint/type-utils/dist/getConstrainedTypeAtLocation.d.ts +0 -7
  1335. package/backend/node_modules/@typescript-eslint/type-utils/dist/getConstrainedTypeAtLocation.d.ts.map +0 -1
  1336. package/backend/node_modules/@typescript-eslint/type-utils/dist/getConstrainedTypeAtLocation.js +0 -15
  1337. package/backend/node_modules/@typescript-eslint/type-utils/dist/getConstrainedTypeAtLocation.js.map +0 -1
  1338. package/backend/node_modules/@typescript-eslint/type-utils/dist/getContextualType.d.ts +0 -8
  1339. package/backend/node_modules/@typescript-eslint/type-utils/dist/getContextualType.d.ts.map +0 -1
  1340. package/backend/node_modules/@typescript-eslint/type-utils/dist/getContextualType.js +0 -66
  1341. package/backend/node_modules/@typescript-eslint/type-utils/dist/getContextualType.js.map +0 -1
  1342. package/backend/node_modules/@typescript-eslint/type-utils/dist/getDeclaration.d.ts +0 -7
  1343. package/backend/node_modules/@typescript-eslint/type-utils/dist/getDeclaration.d.ts.map +0 -1
  1344. package/backend/node_modules/@typescript-eslint/type-utils/dist/getDeclaration.js +0 -16
  1345. package/backend/node_modules/@typescript-eslint/type-utils/dist/getDeclaration.js.map +0 -1
  1346. package/backend/node_modules/@typescript-eslint/type-utils/dist/getSourceFileOfNode.d.ts +0 -6
  1347. package/backend/node_modules/@typescript-eslint/type-utils/dist/getSourceFileOfNode.d.ts.map +0 -1
  1348. package/backend/node_modules/@typescript-eslint/type-utils/dist/getSourceFileOfNode.js +0 -38
  1349. package/backend/node_modules/@typescript-eslint/type-utils/dist/getSourceFileOfNode.js.map +0 -1
  1350. package/backend/node_modules/@typescript-eslint/type-utils/dist/getTokenAtPosition.d.ts +0 -3
  1351. package/backend/node_modules/@typescript-eslint/type-utils/dist/getTokenAtPosition.d.ts.map +0 -1
  1352. package/backend/node_modules/@typescript-eslint/type-utils/dist/getTokenAtPosition.js +0 -51
  1353. package/backend/node_modules/@typescript-eslint/type-utils/dist/getTokenAtPosition.js.map +0 -1
  1354. package/backend/node_modules/@typescript-eslint/type-utils/dist/getTypeArguments.d.ts +0 -6
  1355. package/backend/node_modules/@typescript-eslint/type-utils/dist/getTypeArguments.d.ts.map +0 -1
  1356. package/backend/node_modules/@typescript-eslint/type-utils/dist/getTypeArguments.js +0 -16
  1357. package/backend/node_modules/@typescript-eslint/type-utils/dist/getTypeArguments.js.map +0 -1
  1358. package/backend/node_modules/@typescript-eslint/type-utils/dist/getTypeName.d.ts +0 -8
  1359. package/backend/node_modules/@typescript-eslint/type-utils/dist/getTypeName.d.ts.map +0 -1
  1360. package/backend/node_modules/@typescript-eslint/type-utils/dist/getTypeName.js +0 -74
  1361. package/backend/node_modules/@typescript-eslint/type-utils/dist/getTypeName.js.map +0 -1
  1362. package/backend/node_modules/@typescript-eslint/type-utils/dist/index.d.ts +0 -19
  1363. package/backend/node_modules/@typescript-eslint/type-utils/dist/index.d.ts.map +0 -1
  1364. package/backend/node_modules/@typescript-eslint/type-utils/dist/index.js +0 -39
  1365. package/backend/node_modules/@typescript-eslint/type-utils/dist/index.js.map +0 -1
  1366. package/backend/node_modules/@typescript-eslint/type-utils/dist/isSymbolFromDefaultLibrary.d.ts +0 -3
  1367. package/backend/node_modules/@typescript-eslint/type-utils/dist/isSymbolFromDefaultLibrary.d.ts.map +0 -1
  1368. package/backend/node_modules/@typescript-eslint/type-utils/dist/isSymbolFromDefaultLibrary.js +0 -18
  1369. package/backend/node_modules/@typescript-eslint/type-utils/dist/isSymbolFromDefaultLibrary.js.map +0 -1
  1370. package/backend/node_modules/@typescript-eslint/type-utils/dist/isTypeReadonly.d.ts +0 -27
  1371. package/backend/node_modules/@typescript-eslint/type-utils/dist/isTypeReadonly.d.ts.map +0 -1
  1372. package/backend/node_modules/@typescript-eslint/type-utils/dist/isTypeReadonly.js +0 -226
  1373. package/backend/node_modules/@typescript-eslint/type-utils/dist/isTypeReadonly.js.map +0 -1
  1374. package/backend/node_modules/@typescript-eslint/type-utils/dist/isUnsafeAssignment.d.ts +0 -17
  1375. package/backend/node_modules/@typescript-eslint/type-utils/dist/isUnsafeAssignment.d.ts.map +0 -1
  1376. package/backend/node_modules/@typescript-eslint/type-utils/dist/isUnsafeAssignment.js +0 -106
  1377. package/backend/node_modules/@typescript-eslint/type-utils/dist/isUnsafeAssignment.js.map +0 -1
  1378. package/backend/node_modules/@typescript-eslint/type-utils/dist/predicates.d.ts +0 -58
  1379. package/backend/node_modules/@typescript-eslint/type-utils/dist/predicates.d.ts.map +0 -1
  1380. package/backend/node_modules/@typescript-eslint/type-utils/dist/predicates.js +0 -169
  1381. package/backend/node_modules/@typescript-eslint/type-utils/dist/predicates.js.map +0 -1
  1382. package/backend/node_modules/@typescript-eslint/type-utils/dist/propertyTypes.d.ts +0 -4
  1383. package/backend/node_modules/@typescript-eslint/type-utils/dist/propertyTypes.d.ts.map +0 -1
  1384. package/backend/node_modules/@typescript-eslint/type-utils/dist/propertyTypes.js +0 -37
  1385. package/backend/node_modules/@typescript-eslint/type-utils/dist/propertyTypes.js.map +0 -1
  1386. package/backend/node_modules/@typescript-eslint/type-utils/dist/requiresQuoting.d.ts +0 -4
  1387. package/backend/node_modules/@typescript-eslint/type-utils/dist/requiresQuoting.d.ts.map +0 -1
  1388. package/backend/node_modules/@typescript-eslint/type-utils/dist/requiresQuoting.js +0 -43
  1389. package/backend/node_modules/@typescript-eslint/type-utils/dist/requiresQuoting.js.map +0 -1
  1390. package/backend/node_modules/@typescript-eslint/type-utils/dist/typeFlagUtils.d.ts +0 -16
  1391. package/backend/node_modules/@typescript-eslint/type-utils/dist/typeFlagUtils.d.ts.map +0 -1
  1392. package/backend/node_modules/@typescript-eslint/type-utils/dist/typeFlagUtils.js +0 -59
  1393. package/backend/node_modules/@typescript-eslint/type-utils/dist/typeFlagUtils.js.map +0 -1
  1394. package/backend/node_modules/@typescript-eslint/type-utils/package.json +0 -81
  1395. package/backend/node_modules/@typescript-eslint/utils/LICENSE +0 -21
  1396. package/backend/node_modules/@typescript-eslint/utils/README.md +0 -12
  1397. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/PatternMatcher.d.ts +0 -48
  1398. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/PatternMatcher.d.ts.map +0 -1
  1399. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/PatternMatcher.js +0 -36
  1400. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/PatternMatcher.js.map +0 -1
  1401. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/ReferenceTracker.d.ts +0 -76
  1402. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/ReferenceTracker.d.ts.map +0 -1
  1403. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/ReferenceTracker.js +0 -40
  1404. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/ReferenceTracker.js.map +0 -1
  1405. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/astUtilities.d.ts +0 -76
  1406. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/astUtilities.d.ts.map +0 -1
  1407. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/astUtilities.js +0 -99
  1408. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/astUtilities.js.map +0 -1
  1409. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/index.d.ts +0 -6
  1410. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/index.d.ts.map +0 -1
  1411. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/index.js +0 -22
  1412. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/index.js.map +0 -1
  1413. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/predicates.d.ts +0 -32
  1414. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/predicates.d.ts.map +0 -1
  1415. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/predicates.js +0 -72
  1416. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/predicates.js.map +0 -1
  1417. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/scopeAnalysis.d.ts +0 -18
  1418. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/scopeAnalysis.d.ts.map +0 -1
  1419. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/scopeAnalysis.js +0 -44
  1420. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/scopeAnalysis.js.map +0 -1
  1421. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/helpers.d.ts +0 -1231
  1422. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/helpers.d.ts.map +0 -1
  1423. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/helpers.js +0 -22
  1424. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/helpers.js.map +0 -1
  1425. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/index.d.ts +0 -5
  1426. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/index.d.ts.map +0 -1
  1427. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/index.js +0 -21
  1428. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/index.js.map +0 -1
  1429. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/misc.d.ts +0 -8
  1430. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/misc.d.ts.map +0 -1
  1431. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/misc.js +0 -13
  1432. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/misc.js.map +0 -1
  1433. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/predicates.d.ts +0 -70
  1434. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/predicates.d.ts.map +0 -1
  1435. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/predicates.js +0 -135
  1436. package/backend/node_modules/@typescript-eslint/utils/dist/ast-utils/predicates.js.map +0 -1
  1437. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/InferTypesFromRule.d.ts +0 -11
  1438. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/InferTypesFromRule.d.ts.map +0 -1
  1439. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/InferTypesFromRule.js +0 -3
  1440. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/InferTypesFromRule.js.map +0 -1
  1441. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/RuleCreator.d.ts +0 -35
  1442. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/RuleCreator.d.ts.map +0 -1
  1443. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/RuleCreator.js +0 -45
  1444. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/RuleCreator.js.map +0 -1
  1445. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/applyDefault.d.ts +0 -10
  1446. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/applyDefault.d.ts.map +0 -1
  1447. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/applyDefault.js +0 -34
  1448. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/applyDefault.js.map +0 -1
  1449. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/context.d.ts +0 -10
  1450. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/context.d.ts.map +0 -1
  1451. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/context.js +0 -32
  1452. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/context.js.map +0 -1
  1453. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/deepMerge.d.ts +0 -17
  1454. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/deepMerge.d.ts.map +0 -1
  1455. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/deepMerge.js +0 -48
  1456. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/deepMerge.js.map +0 -1
  1457. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/getParserServices.d.ts +0 -24
  1458. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/getParserServices.d.ts.map +0 -1
  1459. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/getParserServices.js +0 -46
  1460. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/getParserServices.js.map +0 -1
  1461. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/index.d.ts +0 -8
  1462. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/index.d.ts.map +0 -1
  1463. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/index.js +0 -24
  1464. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/index.js.map +0 -1
  1465. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/nullThrows.d.ts +0 -14
  1466. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/nullThrows.d.ts.map +0 -1
  1467. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/nullThrows.js +0 -28
  1468. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/nullThrows.js.map +0 -1
  1469. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/parserPathSeemsToBeTSESLint.d.ts +0 -2
  1470. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/parserPathSeemsToBeTSESLint.d.ts.map +0 -1
  1471. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/parserPathSeemsToBeTSESLint.js +0 -8
  1472. package/backend/node_modules/@typescript-eslint/utils/dist/eslint-utils/parserPathSeemsToBeTSESLint.js.map +0 -1
  1473. package/backend/node_modules/@typescript-eslint/utils/dist/index.d.ts +0 -8
  1474. package/backend/node_modules/@typescript-eslint/utils/dist/index.d.ts.map +0 -1
  1475. package/backend/node_modules/@typescript-eslint/utils/dist/index.js +0 -41
  1476. package/backend/node_modules/@typescript-eslint/utils/dist/index.js.map +0 -1
  1477. package/backend/node_modules/@typescript-eslint/utils/dist/json-schema.d.ts +0 -388
  1478. package/backend/node_modules/@typescript-eslint/utils/dist/json-schema.d.ts.map +0 -1
  1479. package/backend/node_modules/@typescript-eslint/utils/dist/json-schema.js +0 -9
  1480. package/backend/node_modules/@typescript-eslint/utils/dist/json-schema.js.map +0 -1
  1481. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/AST.d.ts +0 -9
  1482. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/AST.d.ts.map +0 -1
  1483. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/AST.js +0 -4
  1484. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/AST.js.map +0 -1
  1485. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/CLIEngine.d.ts +0 -131
  1486. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/CLIEngine.d.ts.map +0 -1
  1487. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/CLIEngine.js +0 -18
  1488. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/CLIEngine.js.map +0 -1
  1489. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Config.d.ts +0 -260
  1490. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Config.d.ts.map +0 -1
  1491. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Config.js +0 -4
  1492. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Config.js.map +0 -1
  1493. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/ESLint.d.ts +0 -374
  1494. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/ESLint.d.ts.map +0 -1
  1495. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/ESLint.js +0 -24
  1496. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/ESLint.js.map +0 -1
  1497. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Linter.d.ts +0 -247
  1498. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Linter.d.ts.map +0 -1
  1499. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Linter.js +0 -14
  1500. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Linter.js.map +0 -1
  1501. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Parser.d.ts +0 -89
  1502. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Parser.d.ts.map +0 -1
  1503. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Parser.js +0 -4
  1504. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Parser.js.map +0 -1
  1505. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/ParserOptions.d.ts +0 -2
  1506. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/ParserOptions.d.ts.map +0 -1
  1507. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/ParserOptions.js +0 -3
  1508. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/ParserOptions.js.map +0 -1
  1509. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Processor.d.ts +0 -37
  1510. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Processor.d.ts.map +0 -1
  1511. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Processor.js +0 -4
  1512. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Processor.js.map +0 -1
  1513. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Rule.d.ts +0 -514
  1514. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Rule.d.ts.map +0 -1
  1515. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Rule.js +0 -3
  1516. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Rule.js.map +0 -1
  1517. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/RuleTester.d.ts +0 -162
  1518. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/RuleTester.d.ts.map +0 -1
  1519. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/RuleTester.js +0 -8
  1520. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/RuleTester.js.map +0 -1
  1521. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Scope.d.ts +0 -44
  1522. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Scope.d.ts.map +0 -1
  1523. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Scope.js +0 -34
  1524. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/Scope.js.map +0 -1
  1525. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/SourceCode.d.ts +0 -362
  1526. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/SourceCode.d.ts.map +0 -1
  1527. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/SourceCode.js +0 -9
  1528. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/SourceCode.js.map +0 -1
  1529. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/index.d.ts +0 -13
  1530. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/index.d.ts.map +0 -1
  1531. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/index.js +0 -29
  1532. package/backend/node_modules/@typescript-eslint/utils/dist/ts-eslint/index.js.map +0 -1
  1533. package/backend/node_modules/@typescript-eslint/utils/dist/ts-estree.d.ts +0 -3
  1534. package/backend/node_modules/@typescript-eslint/utils/dist/ts-estree.d.ts.map +0 -1
  1535. package/backend/node_modules/@typescript-eslint/utils/dist/ts-estree.js +0 -10
  1536. package/backend/node_modules/@typescript-eslint/utils/dist/ts-estree.js.map +0 -1
  1537. package/backend/node_modules/@typescript-eslint/utils/dist/ts-utils/index.d.ts +0 -2
  1538. package/backend/node_modules/@typescript-eslint/utils/dist/ts-utils/index.d.ts.map +0 -1
  1539. package/backend/node_modules/@typescript-eslint/utils/dist/ts-utils/index.js +0 -18
  1540. package/backend/node_modules/@typescript-eslint/utils/dist/ts-utils/index.js.map +0 -1
  1541. package/backend/node_modules/@typescript-eslint/utils/dist/ts-utils/isArray.d.ts +0 -2
  1542. package/backend/node_modules/@typescript-eslint/utils/dist/ts-utils/isArray.d.ts.map +0 -1
  1543. package/backend/node_modules/@typescript-eslint/utils/dist/ts-utils/isArray.js +0 -9
  1544. package/backend/node_modules/@typescript-eslint/utils/dist/ts-utils/isArray.js.map +0 -1
  1545. package/backend/node_modules/@typescript-eslint/utils/package.json +0 -98
  1546. package/backend/node_modules/@typescript-eslint/visitor-keys/LICENSE +0 -21
  1547. package/backend/node_modules/@typescript-eslint/visitor-keys/README.md +0 -10
  1548. package/backend/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.d.ts +0 -4
  1549. package/backend/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.d.ts.map +0 -1
  1550. package/backend/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.js +0 -7
  1551. package/backend/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.js.map +0 -1
  1552. package/backend/node_modules/@typescript-eslint/visitor-keys/dist/index.d.ts +0 -3
  1553. package/backend/node_modules/@typescript-eslint/visitor-keys/dist/index.d.ts.map +0 -1
  1554. package/backend/node_modules/@typescript-eslint/visitor-keys/dist/index.js +0 -8
  1555. package/backend/node_modules/@typescript-eslint/visitor-keys/dist/index.js.map +0 -1
  1556. package/backend/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.d.ts +0 -4
  1557. package/backend/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.d.ts.map +0 -1
  1558. package/backend/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.js +0 -190
  1559. package/backend/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.js.map +0 -1
  1560. package/backend/node_modules/@typescript-eslint/visitor-keys/package.json +0 -70
  1561. package/backend/node_modules/ansi-styles/index.d.ts +0 -345
  1562. package/backend/node_modules/ansi-styles/index.js +0 -163
  1563. package/backend/node_modules/ansi-styles/license +0 -9
  1564. package/backend/node_modules/ansi-styles/package.json +0 -56
  1565. package/backend/node_modules/ansi-styles/readme.md +0 -152
  1566. package/backend/node_modules/chalk/index.d.ts +0 -415
  1567. package/backend/node_modules/chalk/license +0 -9
  1568. package/backend/node_modules/chalk/package.json +0 -68
  1569. package/backend/node_modules/chalk/readme.md +0 -341
  1570. package/backend/node_modules/chalk/source/index.js +0 -229
  1571. package/backend/node_modules/chalk/source/templates.js +0 -134
  1572. package/backend/node_modules/chalk/source/util.js +0 -39
  1573. package/backend/node_modules/eslint/LICENSE +0 -19
  1574. package/backend/node_modules/eslint/README.md +0 -304
  1575. package/backend/node_modules/eslint/bin/eslint.js +0 -173
  1576. package/backend/node_modules/eslint/conf/config-schema.js +0 -93
  1577. package/backend/node_modules/eslint/conf/default-cli-options.js +0 -32
  1578. package/backend/node_modules/eslint/conf/globals.js +0 -154
  1579. package/backend/node_modules/eslint/conf/replacements.json +0 -22
  1580. package/backend/node_modules/eslint/conf/rule-type-list.json +0 -28
  1581. package/backend/node_modules/eslint/lib/api.js +0 -54
  1582. package/backend/node_modules/eslint/lib/cli-engine/cli-engine.js +0 -1078
  1583. package/backend/node_modules/eslint/lib/cli-engine/file-enumerator.js +0 -547
  1584. package/backend/node_modules/eslint/lib/cli-engine/formatters/checkstyle.js +0 -60
  1585. package/backend/node_modules/eslint/lib/cli-engine/formatters/compact.js +0 -60
  1586. package/backend/node_modules/eslint/lib/cli-engine/formatters/formatters-meta.json +0 -46
  1587. package/backend/node_modules/eslint/lib/cli-engine/formatters/html.js +0 -351
  1588. package/backend/node_modules/eslint/lib/cli-engine/formatters/jslint-xml.js +0 -41
  1589. package/backend/node_modules/eslint/lib/cli-engine/formatters/json-with-metadata.js +0 -16
  1590. package/backend/node_modules/eslint/lib/cli-engine/formatters/json.js +0 -13
  1591. package/backend/node_modules/eslint/lib/cli-engine/formatters/junit.js +0 -82
  1592. package/backend/node_modules/eslint/lib/cli-engine/formatters/stylish.js +0 -101
  1593. package/backend/node_modules/eslint/lib/cli-engine/formatters/tap.js +0 -95
  1594. package/backend/node_modules/eslint/lib/cli-engine/formatters/unix.js +0 -58
  1595. package/backend/node_modules/eslint/lib/cli-engine/formatters/visualstudio.js +0 -63
  1596. package/backend/node_modules/eslint/lib/cli-engine/hash.js +0 -35
  1597. package/backend/node_modules/eslint/lib/cli-engine/index.js +0 -7
  1598. package/backend/node_modules/eslint/lib/cli-engine/lint-result-cache.js +0 -203
  1599. package/backend/node_modules/eslint/lib/cli-engine/load-rules.js +0 -46
  1600. package/backend/node_modules/eslint/lib/cli-engine/xml-escape.js +0 -34
  1601. package/backend/node_modules/eslint/lib/cli.js +0 -471
  1602. package/backend/node_modules/eslint/lib/config/default-config.js +0 -67
  1603. package/backend/node_modules/eslint/lib/config/flat-config-array.js +0 -380
  1604. package/backend/node_modules/eslint/lib/config/flat-config-helpers.js +0 -111
  1605. package/backend/node_modules/eslint/lib/config/flat-config-schema.js +0 -598
  1606. package/backend/node_modules/eslint/lib/config/rule-validator.js +0 -158
  1607. package/backend/node_modules/eslint/lib/eslint/eslint-helpers.js +0 -932
  1608. package/backend/node_modules/eslint/lib/eslint/eslint.js +0 -707
  1609. package/backend/node_modules/eslint/lib/eslint/flat-eslint.js +0 -1159
  1610. package/backend/node_modules/eslint/lib/eslint/index.js +0 -9
  1611. package/backend/node_modules/eslint/lib/linter/apply-disable-directives.js +0 -465
  1612. package/backend/node_modules/eslint/lib/linter/code-path-analysis/code-path-analyzer.js +0 -852
  1613. package/backend/node_modules/eslint/lib/linter/code-path-analysis/code-path-segment.js +0 -263
  1614. package/backend/node_modules/eslint/lib/linter/code-path-analysis/code-path-state.js +0 -2348
  1615. package/backend/node_modules/eslint/lib/linter/code-path-analysis/code-path.js +0 -342
  1616. package/backend/node_modules/eslint/lib/linter/code-path-analysis/debug-helpers.js +0 -203
  1617. package/backend/node_modules/eslint/lib/linter/code-path-analysis/fork-context.js +0 -349
  1618. package/backend/node_modules/eslint/lib/linter/code-path-analysis/id-generator.js +0 -45
  1619. package/backend/node_modules/eslint/lib/linter/config-comment-parser.js +0 -185
  1620. package/backend/node_modules/eslint/lib/linter/index.js +0 -13
  1621. package/backend/node_modules/eslint/lib/linter/interpolate.js +0 -28
  1622. package/backend/node_modules/eslint/lib/linter/linter.js +0 -2119
  1623. package/backend/node_modules/eslint/lib/linter/node-event-generator.js +0 -354
  1624. package/backend/node_modules/eslint/lib/linter/report-translator.js +0 -369
  1625. package/backend/node_modules/eslint/lib/linter/rule-fixer.js +0 -140
  1626. package/backend/node_modules/eslint/lib/linter/rules.js +0 -80
  1627. package/backend/node_modules/eslint/lib/linter/safe-emitter.js +0 -52
  1628. package/backend/node_modules/eslint/lib/linter/source-code-fixer.js +0 -152
  1629. package/backend/node_modules/eslint/lib/linter/timing.js +0 -161
  1630. package/backend/node_modules/eslint/lib/options.js +0 -398
  1631. package/backend/node_modules/eslint/lib/rule-tester/flat-rule-tester.js +0 -1131
  1632. package/backend/node_modules/eslint/lib/rule-tester/index.js +0 -5
  1633. package/backend/node_modules/eslint/lib/rule-tester/rule-tester.js +0 -1206
  1634. package/backend/node_modules/eslint/lib/rules/accessor-pairs.js +0 -346
  1635. package/backend/node_modules/eslint/lib/rules/array-bracket-newline.js +0 -261
  1636. package/backend/node_modules/eslint/lib/rules/array-bracket-spacing.js +0 -244
  1637. package/backend/node_modules/eslint/lib/rules/array-callback-return.js +0 -446
  1638. package/backend/node_modules/eslint/lib/rules/array-element-newline.js +0 -311
  1639. package/backend/node_modules/eslint/lib/rules/arrow-body-style.js +0 -296
  1640. package/backend/node_modules/eslint/lib/rules/arrow-parens.js +0 -186
  1641. package/backend/node_modules/eslint/lib/rules/arrow-spacing.js +0 -164
  1642. package/backend/node_modules/eslint/lib/rules/block-scoped-var.js +0 -135
  1643. package/backend/node_modules/eslint/lib/rules/block-spacing.js +0 -174
  1644. package/backend/node_modules/eslint/lib/rules/brace-style.js +0 -197
  1645. package/backend/node_modules/eslint/lib/rules/callback-return.js +0 -187
  1646. package/backend/node_modules/eslint/lib/rules/camelcase.js +0 -399
  1647. package/backend/node_modules/eslint/lib/rules/capitalized-comments.js +0 -300
  1648. package/backend/node_modules/eslint/lib/rules/class-methods-use-this.js +0 -187
  1649. package/backend/node_modules/eslint/lib/rules/comma-dangle.js +0 -373
  1650. package/backend/node_modules/eslint/lib/rules/comma-spacing.js +0 -192
  1651. package/backend/node_modules/eslint/lib/rules/comma-style.js +0 -314
  1652. package/backend/node_modules/eslint/lib/rules/complexity.js +0 -165
  1653. package/backend/node_modules/eslint/lib/rules/computed-property-spacing.js +0 -208
  1654. package/backend/node_modules/eslint/lib/rules/consistent-return.js +0 -210
  1655. package/backend/node_modules/eslint/lib/rules/consistent-this.js +0 -153
  1656. package/backend/node_modules/eslint/lib/rules/constructor-super.js +0 -446
  1657. package/backend/node_modules/eslint/lib/rules/curly.js +0 -486
  1658. package/backend/node_modules/eslint/lib/rules/default-case-last.js +0 -44
  1659. package/backend/node_modules/eslint/lib/rules/default-case.js +0 -97
  1660. package/backend/node_modules/eslint/lib/rules/default-param-last.js +0 -62
  1661. package/backend/node_modules/eslint/lib/rules/dot-location.js +0 -108
  1662. package/backend/node_modules/eslint/lib/rules/dot-notation.js +0 -176
  1663. package/backend/node_modules/eslint/lib/rules/eol-last.js +0 -115
  1664. package/backend/node_modules/eslint/lib/rules/eqeqeq.js +0 -174
  1665. package/backend/node_modules/eslint/lib/rules/for-direction.js +0 -140
  1666. package/backend/node_modules/eslint/lib/rules/func-call-spacing.js +0 -233
  1667. package/backend/node_modules/eslint/lib/rules/func-name-matching.js +0 -253
  1668. package/backend/node_modules/eslint/lib/rules/func-names.js +0 -191
  1669. package/backend/node_modules/eslint/lib/rules/func-style.js +0 -98
  1670. package/backend/node_modules/eslint/lib/rules/function-call-argument-newline.js +0 -125
  1671. package/backend/node_modules/eslint/lib/rules/function-paren-newline.js +0 -292
  1672. package/backend/node_modules/eslint/lib/rules/generator-star-spacing.js +0 -209
  1673. package/backend/node_modules/eslint/lib/rules/getter-return.js +0 -204
  1674. package/backend/node_modules/eslint/lib/rules/global-require.js +0 -90
  1675. package/backend/node_modules/eslint/lib/rules/grouped-accessor-pairs.js +0 -215
  1676. package/backend/node_modules/eslint/lib/rules/guard-for-in.js +0 -76
  1677. package/backend/node_modules/eslint/lib/rules/handle-callback-err.js +0 -101
  1678. package/backend/node_modules/eslint/lib/rules/id-blacklist.js +0 -246
  1679. package/backend/node_modules/eslint/lib/rules/id-denylist.js +0 -228
  1680. package/backend/node_modules/eslint/lib/rules/id-length.js +0 -177
  1681. package/backend/node_modules/eslint/lib/rules/id-match.js +0 -299
  1682. package/backend/node_modules/eslint/lib/rules/implicit-arrow-linebreak.js +0 -84
  1683. package/backend/node_modules/eslint/lib/rules/indent-legacy.js +0 -1126
  1684. package/backend/node_modules/eslint/lib/rules/indent.js +0 -1803
  1685. package/backend/node_modules/eslint/lib/rules/index.js +0 -306
  1686. package/backend/node_modules/eslint/lib/rules/init-declarations.js +0 -139
  1687. package/backend/node_modules/eslint/lib/rules/jsx-quotes.js +0 -98
  1688. package/backend/node_modules/eslint/lib/rules/key-spacing.js +0 -687
  1689. package/backend/node_modules/eslint/lib/rules/keyword-spacing.js +0 -640
  1690. package/backend/node_modules/eslint/lib/rules/line-comment-position.js +0 -122
  1691. package/backend/node_modules/eslint/lib/rules/linebreak-style.js +0 -108
  1692. package/backend/node_modules/eslint/lib/rules/lines-around-comment.js +0 -471
  1693. package/backend/node_modules/eslint/lib/rules/lines-around-directive.js +0 -201
  1694. package/backend/node_modules/eslint/lib/rules/lines-between-class-members.js +0 -269
  1695. package/backend/node_modules/eslint/lib/rules/logical-assignment-operators.js +0 -504
  1696. package/backend/node_modules/eslint/lib/rules/max-classes-per-file.js +0 -89
  1697. package/backend/node_modules/eslint/lib/rules/max-depth.js +0 -156
  1698. package/backend/node_modules/eslint/lib/rules/max-len.js +0 -440
  1699. package/backend/node_modules/eslint/lib/rules/max-lines-per-function.js +0 -213
  1700. package/backend/node_modules/eslint/lib/rules/max-lines.js +0 -193
  1701. package/backend/node_modules/eslint/lib/rules/max-nested-callbacks.js +0 -117
  1702. package/backend/node_modules/eslint/lib/rules/max-params.js +0 -102
  1703. package/backend/node_modules/eslint/lib/rules/max-statements-per-line.js +0 -199
  1704. package/backend/node_modules/eslint/lib/rules/max-statements.js +0 -184
  1705. package/backend/node_modules/eslint/lib/rules/multiline-comment-style.js +0 -474
  1706. package/backend/node_modules/eslint/lib/rules/multiline-ternary.js +0 -174
  1707. package/backend/node_modules/eslint/lib/rules/new-cap.js +0 -276
  1708. package/backend/node_modules/eslint/lib/rules/new-parens.js +0 -93
  1709. package/backend/node_modules/eslint/lib/rules/newline-after-var.js +0 -253
  1710. package/backend/node_modules/eslint/lib/rules/newline-before-return.js +0 -217
  1711. package/backend/node_modules/eslint/lib/rules/newline-per-chained-call.js +0 -126
  1712. package/backend/node_modules/eslint/lib/rules/no-alert.js +0 -138
  1713. package/backend/node_modules/eslint/lib/rules/no-array-constructor.js +0 -133
  1714. package/backend/node_modules/eslint/lib/rules/no-async-promise-executor.js +0 -39
  1715. package/backend/node_modules/eslint/lib/rules/no-await-in-loop.js +0 -106
  1716. package/backend/node_modules/eslint/lib/rules/no-bitwise.js +0 -119
  1717. package/backend/node_modules/eslint/lib/rules/no-buffer-constructor.js +0 -50
  1718. package/backend/node_modules/eslint/lib/rules/no-caller.js +0 -46
  1719. package/backend/node_modules/eslint/lib/rules/no-case-declarations.js +0 -64
  1720. package/backend/node_modules/eslint/lib/rules/no-catch-shadow.js +0 -82
  1721. package/backend/node_modules/eslint/lib/rules/no-class-assign.js +0 -63
  1722. package/backend/node_modules/eslint/lib/rules/no-compare-neg-zero.js +0 -60
  1723. package/backend/node_modules/eslint/lib/rules/no-cond-assign.js +0 -159
  1724. package/backend/node_modules/eslint/lib/rules/no-confusing-arrow.js +0 -92
  1725. package/backend/node_modules/eslint/lib/rules/no-console.js +0 -207
  1726. package/backend/node_modules/eslint/lib/rules/no-const-assign.js +0 -56
  1727. package/backend/node_modules/eslint/lib/rules/no-constant-binary-expression.js +0 -509
  1728. package/backend/node_modules/eslint/lib/rules/no-constant-condition.js +0 -150
  1729. package/backend/node_modules/eslint/lib/rules/no-constructor-return.js +0 -62
  1730. package/backend/node_modules/eslint/lib/rules/no-continue.js +0 -39
  1731. package/backend/node_modules/eslint/lib/rules/no-control-regex.js +0 -138
  1732. package/backend/node_modules/eslint/lib/rules/no-debugger.js +0 -43
  1733. package/backend/node_modules/eslint/lib/rules/no-delete-var.js +0 -42
  1734. package/backend/node_modules/eslint/lib/rules/no-div-regex.js +0 -53
  1735. package/backend/node_modules/eslint/lib/rules/no-dupe-args.js +0 -82
  1736. package/backend/node_modules/eslint/lib/rules/no-dupe-class-members.js +0 -104
  1737. package/backend/node_modules/eslint/lib/rules/no-dupe-else-if.js +0 -122
  1738. package/backend/node_modules/eslint/lib/rules/no-dupe-keys.js +0 -142
  1739. package/backend/node_modules/eslint/lib/rules/no-duplicate-case.js +0 -71
  1740. package/backend/node_modules/eslint/lib/rules/no-duplicate-imports.js +0 -290
  1741. package/backend/node_modules/eslint/lib/rules/no-else-return.js +0 -405
  1742. package/backend/node_modules/eslint/lib/rules/no-empty-character-class.js +0 -76
  1743. package/backend/node_modules/eslint/lib/rules/no-empty-function.js +0 -167
  1744. package/backend/node_modules/eslint/lib/rules/no-empty-pattern.js +0 -78
  1745. package/backend/node_modules/eslint/lib/rules/no-empty-static-block.js +0 -47
  1746. package/backend/node_modules/eslint/lib/rules/no-empty.js +0 -103
  1747. package/backend/node_modules/eslint/lib/rules/no-eq-null.js +0 -46
  1748. package/backend/node_modules/eslint/lib/rules/no-eval.js +0 -286
  1749. package/backend/node_modules/eslint/lib/rules/no-ex-assign.js +0 -54
  1750. package/backend/node_modules/eslint/lib/rules/no-extend-native.js +0 -179
  1751. package/backend/node_modules/eslint/lib/rules/no-extra-bind.js +0 -213
  1752. package/backend/node_modules/eslint/lib/rules/no-extra-boolean-cast.js +0 -317
  1753. package/backend/node_modules/eslint/lib/rules/no-extra-label.js +0 -149
  1754. package/backend/node_modules/eslint/lib/rules/no-extra-parens.js +0 -1322
  1755. package/backend/node_modules/eslint/lib/rules/no-extra-semi.js +0 -147
  1756. package/backend/node_modules/eslint/lib/rules/no-fallthrough.js +0 -196
  1757. package/backend/node_modules/eslint/lib/rules/no-floating-decimal.js +0 -73
  1758. package/backend/node_modules/eslint/lib/rules/no-func-assign.js +0 -78
  1759. package/backend/node_modules/eslint/lib/rules/no-global-assign.js +0 -95
  1760. package/backend/node_modules/eslint/lib/rules/no-implicit-coercion.js +0 -380
  1761. package/backend/node_modules/eslint/lib/rules/no-implicit-globals.js +0 -146
  1762. package/backend/node_modules/eslint/lib/rules/no-implied-eval.js +0 -132
  1763. package/backend/node_modules/eslint/lib/rules/no-import-assign.js +0 -241
  1764. package/backend/node_modules/eslint/lib/rules/no-inline-comments.js +0 -110
  1765. package/backend/node_modules/eslint/lib/rules/no-inner-declarations.js +0 -110
  1766. package/backend/node_modules/eslint/lib/rules/no-invalid-regexp.js +0 -194
  1767. package/backend/node_modules/eslint/lib/rules/no-invalid-this.js +0 -150
  1768. package/backend/node_modules/eslint/lib/rules/no-irregular-whitespace.js +0 -276
  1769. package/backend/node_modules/eslint/lib/rules/no-iterator.js +0 -52
  1770. package/backend/node_modules/eslint/lib/rules/no-label-var.js +0 -80
  1771. package/backend/node_modules/eslint/lib/rules/no-labels.js +0 -149
  1772. package/backend/node_modules/eslint/lib/rules/no-lone-blocks.js +0 -136
  1773. package/backend/node_modules/eslint/lib/rules/no-lonely-if.js +0 -88
  1774. package/backend/node_modules/eslint/lib/rules/no-loop-func.js +0 -206
  1775. package/backend/node_modules/eslint/lib/rules/no-loss-of-precision.js +0 -214
  1776. package/backend/node_modules/eslint/lib/rules/no-magic-numbers.js +0 -243
  1777. package/backend/node_modules/eslint/lib/rules/no-misleading-character-class.js +0 -300
  1778. package/backend/node_modules/eslint/lib/rules/no-mixed-operators.js +0 -229
  1779. package/backend/node_modules/eslint/lib/rules/no-mixed-requires.js +0 -238
  1780. package/backend/node_modules/eslint/lib/rules/no-mixed-spaces-and-tabs.js +0 -116
  1781. package/backend/node_modules/eslint/lib/rules/no-multi-assign.js +0 -67
  1782. package/backend/node_modules/eslint/lib/rules/no-multi-spaces.js +0 -141
  1783. package/backend/node_modules/eslint/lib/rules/no-multi-str.js +0 -65
  1784. package/backend/node_modules/eslint/lib/rules/no-multiple-empty-lines.js +0 -154
  1785. package/backend/node_modules/eslint/lib/rules/no-native-reassign.js +0 -98
  1786. package/backend/node_modules/eslint/lib/rules/no-negated-condition.js +0 -95
  1787. package/backend/node_modules/eslint/lib/rules/no-negated-in-lhs.js +0 -46
  1788. package/backend/node_modules/eslint/lib/rules/no-nested-ternary.js +0 -44
  1789. package/backend/node_modules/eslint/lib/rules/no-new-func.js +0 -87
  1790. package/backend/node_modules/eslint/lib/rules/no-new-native-nonconstructor.js +0 -66
  1791. package/backend/node_modules/eslint/lib/rules/no-new-object.js +0 -67
  1792. package/backend/node_modules/eslint/lib/rules/no-new-require.js +0 -50
  1793. package/backend/node_modules/eslint/lib/rules/no-new-symbol.js +0 -56
  1794. package/backend/node_modules/eslint/lib/rules/no-new-wrappers.js +0 -60
  1795. package/backend/node_modules/eslint/lib/rules/no-new.js +0 -43
  1796. package/backend/node_modules/eslint/lib/rules/no-nonoctal-decimal-escape.js +0 -148
  1797. package/backend/node_modules/eslint/lib/rules/no-obj-calls.js +0 -86
  1798. package/backend/node_modules/eslint/lib/rules/no-object-constructor.js +0 -117
  1799. package/backend/node_modules/eslint/lib/rules/no-octal-escape.js +0 -56
  1800. package/backend/node_modules/eslint/lib/rules/no-octal.js +0 -45
  1801. package/backend/node_modules/eslint/lib/rules/no-param-reassign.js +0 -230
  1802. package/backend/node_modules/eslint/lib/rules/no-path-concat.js +0 -64
  1803. package/backend/node_modules/eslint/lib/rules/no-plusplus.js +0 -105
  1804. package/backend/node_modules/eslint/lib/rules/no-process-env.js +0 -51
  1805. package/backend/node_modules/eslint/lib/rules/no-process-exit.js +0 -47
  1806. package/backend/node_modules/eslint/lib/rules/no-promise-executor-return.js +0 -263
  1807. package/backend/node_modules/eslint/lib/rules/no-proto.js +0 -48
  1808. package/backend/node_modules/eslint/lib/rules/no-prototype-builtins.js +0 -159
  1809. package/backend/node_modules/eslint/lib/rules/no-redeclare.js +0 -174
  1810. package/backend/node_modules/eslint/lib/rules/no-regex-spaces.js +0 -197
  1811. package/backend/node_modules/eslint/lib/rules/no-restricted-exports.js +0 -193
  1812. package/backend/node_modules/eslint/lib/rules/no-restricted-globals.js +0 -124
  1813. package/backend/node_modules/eslint/lib/rules/no-restricted-imports.js +0 -410
  1814. package/backend/node_modules/eslint/lib/rules/no-restricted-modules.js +0 -213
  1815. package/backend/node_modules/eslint/lib/rules/no-restricted-properties.js +0 -168
  1816. package/backend/node_modules/eslint/lib/rules/no-restricted-syntax.js +0 -70
  1817. package/backend/node_modules/eslint/lib/rules/no-return-assign.js +0 -80
  1818. package/backend/node_modules/eslint/lib/rules/no-return-await.js +0 -135
  1819. package/backend/node_modules/eslint/lib/rules/no-script-url.js +0 -61
  1820. package/backend/node_modules/eslint/lib/rules/no-self-assign.js +0 -183
  1821. package/backend/node_modules/eslint/lib/rules/no-self-compare.js +0 -60
  1822. package/backend/node_modules/eslint/lib/rules/no-sequences.js +0 -138
  1823. package/backend/node_modules/eslint/lib/rules/no-setter-return.js +0 -226
  1824. package/backend/node_modules/eslint/lib/rules/no-shadow-restricted-names.js +0 -65
  1825. package/backend/node_modules/eslint/lib/rules/no-shadow.js +0 -336
  1826. package/backend/node_modules/eslint/lib/rules/no-spaced-func.js +0 -83
  1827. package/backend/node_modules/eslint/lib/rules/no-sparse-arrays.js +0 -50
  1828. package/backend/node_modules/eslint/lib/rules/no-sync.js +0 -64
  1829. package/backend/node_modules/eslint/lib/rules/no-tabs.js +0 -81
  1830. package/backend/node_modules/eslint/lib/rules/no-template-curly-in-string.js +0 -44
  1831. package/backend/node_modules/eslint/lib/rules/no-ternary.js +0 -41
  1832. package/backend/node_modules/eslint/lib/rules/no-this-before-super.js +0 -331
  1833. package/backend/node_modules/eslint/lib/rules/no-throw-literal.js +0 -51
  1834. package/backend/node_modules/eslint/lib/rules/no-trailing-spaces.js +0 -193
  1835. package/backend/node_modules/eslint/lib/rules/no-undef-init.js +0 -75
  1836. package/backend/node_modules/eslint/lib/rules/no-undef.js +0 -79
  1837. package/backend/node_modules/eslint/lib/rules/no-undefined.js +0 -86
  1838. package/backend/node_modules/eslint/lib/rules/no-underscore-dangle.js +0 -335
  1839. package/backend/node_modules/eslint/lib/rules/no-unexpected-multiline.js +0 -120
  1840. package/backend/node_modules/eslint/lib/rules/no-unmodified-loop-condition.js +0 -360
  1841. package/backend/node_modules/eslint/lib/rules/no-unneeded-ternary.js +0 -166
  1842. package/backend/node_modules/eslint/lib/rules/no-unreachable-loop.js +0 -185
  1843. package/backend/node_modules/eslint/lib/rules/no-unreachable.js +0 -293
  1844. package/backend/node_modules/eslint/lib/rules/no-unsafe-finally.js +0 -111
  1845. package/backend/node_modules/eslint/lib/rules/no-unsafe-negation.js +0 -128
  1846. package/backend/node_modules/eslint/lib/rules/no-unsafe-optional-chaining.js +0 -205
  1847. package/backend/node_modules/eslint/lib/rules/no-unused-expressions.js +0 -186
  1848. package/backend/node_modules/eslint/lib/rules/no-unused-labels.js +0 -143
  1849. package/backend/node_modules/eslint/lib/rules/no-unused-private-class-members.js +0 -195
  1850. package/backend/node_modules/eslint/lib/rules/no-unused-vars.js +0 -718
  1851. package/backend/node_modules/eslint/lib/rules/no-use-before-define.js +0 -348
  1852. package/backend/node_modules/eslint/lib/rules/no-useless-backreference.js +0 -194
  1853. package/backend/node_modules/eslint/lib/rules/no-useless-call.js +0 -90
  1854. package/backend/node_modules/eslint/lib/rules/no-useless-catch.js +0 -57
  1855. package/backend/node_modules/eslint/lib/rules/no-useless-computed-key.js +0 -168
  1856. package/backend/node_modules/eslint/lib/rules/no-useless-concat.js +0 -115
  1857. package/backend/node_modules/eslint/lib/rules/no-useless-constructor.js +0 -189
  1858. package/backend/node_modules/eslint/lib/rules/no-useless-escape.js +0 -333
  1859. package/backend/node_modules/eslint/lib/rules/no-useless-rename.js +0 -172
  1860. package/backend/node_modules/eslint/lib/rules/no-useless-return.js +0 -364
  1861. package/backend/node_modules/eslint/lib/rules/no-var.js +0 -334
  1862. package/backend/node_modules/eslint/lib/rules/no-void.js +0 -64
  1863. package/backend/node_modules/eslint/lib/rules/no-warning-comments.js +0 -201
  1864. package/backend/node_modules/eslint/lib/rules/no-whitespace-before-property.js +0 -116
  1865. package/backend/node_modules/eslint/lib/rules/no-with.js +0 -39
  1866. package/backend/node_modules/eslint/lib/rules/nonblock-statement-body-position.js +0 -127
  1867. package/backend/node_modules/eslint/lib/rules/object-curly-newline.js +0 -324
  1868. package/backend/node_modules/eslint/lib/rules/object-curly-spacing.js +0 -311
  1869. package/backend/node_modules/eslint/lib/rules/object-property-newline.js +0 -102
  1870. package/backend/node_modules/eslint/lib/rules/object-shorthand.js +0 -520
  1871. package/backend/node_modules/eslint/lib/rules/one-var-declaration-per-line.js +0 -95
  1872. package/backend/node_modules/eslint/lib/rules/one-var.js +0 -567
  1873. package/backend/node_modules/eslint/lib/rules/operator-assignment.js +0 -209
  1874. package/backend/node_modules/eslint/lib/rules/operator-linebreak.js +0 -253
  1875. package/backend/node_modules/eslint/lib/rules/padded-blocks.js +0 -310
  1876. package/backend/node_modules/eslint/lib/rules/padding-line-between-statements.js +0 -590
  1877. package/backend/node_modules/eslint/lib/rules/prefer-arrow-callback.js +0 -381
  1878. package/backend/node_modules/eslint/lib/rules/prefer-const.js +0 -501
  1879. package/backend/node_modules/eslint/lib/rules/prefer-destructuring.js +0 -301
  1880. package/backend/node_modules/eslint/lib/rules/prefer-exponentiation-operator.js +0 -191
  1881. package/backend/node_modules/eslint/lib/rules/prefer-named-capture-group.js +0 -178
  1882. package/backend/node_modules/eslint/lib/rules/prefer-numeric-literals.js +0 -148
  1883. package/backend/node_modules/eslint/lib/rules/prefer-object-has-own.js +0 -114
  1884. package/backend/node_modules/eslint/lib/rules/prefer-object-spread.js +0 -298
  1885. package/backend/node_modules/eslint/lib/rules/prefer-promise-reject-errors.js +0 -132
  1886. package/backend/node_modules/eslint/lib/rules/prefer-reflect.js +0 -127
  1887. package/backend/node_modules/eslint/lib/rules/prefer-regex-literals.js +0 -507
  1888. package/backend/node_modules/eslint/lib/rules/prefer-rest-params.js +0 -118
  1889. package/backend/node_modules/eslint/lib/rules/prefer-spread.js +0 -87
  1890. package/backend/node_modules/eslint/lib/rules/prefer-template.js +0 -275
  1891. package/backend/node_modules/eslint/lib/rules/quote-props.js +0 -310
  1892. package/backend/node_modules/eslint/lib/rules/quotes.js +0 -350
  1893. package/backend/node_modules/eslint/lib/rules/radix.js +0 -198
  1894. package/backend/node_modules/eslint/lib/rules/require-atomic-updates.js +0 -331
  1895. package/backend/node_modules/eslint/lib/rules/require-await.js +0 -113
  1896. package/backend/node_modules/eslint/lib/rules/require-jsdoc.js +0 -122
  1897. package/backend/node_modules/eslint/lib/rules/require-unicode-regexp.js +0 -129
  1898. package/backend/node_modules/eslint/lib/rules/require-yield.js +0 -77
  1899. package/backend/node_modules/eslint/lib/rules/rest-spread-spacing.js +0 -123
  1900. package/backend/node_modules/eslint/lib/rules/semi-spacing.js +0 -248
  1901. package/backend/node_modules/eslint/lib/rules/semi-style.js +0 -158
  1902. package/backend/node_modules/eslint/lib/rules/semi.js +0 -438
  1903. package/backend/node_modules/eslint/lib/rules/sort-imports.js +0 -241
  1904. package/backend/node_modules/eslint/lib/rules/sort-keys.js +0 -230
  1905. package/backend/node_modules/eslint/lib/rules/sort-vars.js +0 -104
  1906. package/backend/node_modules/eslint/lib/rules/space-before-blocks.js +0 -204
  1907. package/backend/node_modules/eslint/lib/rules/space-before-function-paren.js +0 -167
  1908. package/backend/node_modules/eslint/lib/rules/space-in-parens.js +0 -285
  1909. package/backend/node_modules/eslint/lib/rules/space-infix-ops.js +0 -198
  1910. package/backend/node_modules/eslint/lib/rules/space-unary-ops.js +0 -324
  1911. package/backend/node_modules/eslint/lib/rules/spaced-comment.js +0 -385
  1912. package/backend/node_modules/eslint/lib/rules/strict.js +0 -277
  1913. package/backend/node_modules/eslint/lib/rules/switch-colon-spacing.js +0 -132
  1914. package/backend/node_modules/eslint/lib/rules/symbol-description.js +0 -73
  1915. package/backend/node_modules/eslint/lib/rules/template-curly-spacing.js +0 -144
  1916. package/backend/node_modules/eslint/lib/rules/template-tag-spacing.js +0 -93
  1917. package/backend/node_modules/eslint/lib/rules/unicode-bom.js +0 -73
  1918. package/backend/node_modules/eslint/lib/rules/use-isnan.js +0 -141
  1919. package/backend/node_modules/eslint/lib/rules/utils/ast-utils.js +0 -2282
  1920. package/backend/node_modules/eslint/lib/rules/utils/fix-tracker.js +0 -114
  1921. package/backend/node_modules/eslint/lib/rules/utils/keywords.js +0 -67
  1922. package/backend/node_modules/eslint/lib/rules/utils/lazy-loading-rule-map.js +0 -115
  1923. package/backend/node_modules/eslint/lib/rules/utils/patterns/letters.js +0 -36
  1924. package/backend/node_modules/eslint/lib/rules/utils/regular-expressions.js +0 -42
  1925. package/backend/node_modules/eslint/lib/rules/utils/unicode/index.js +0 -11
  1926. package/backend/node_modules/eslint/lib/rules/utils/unicode/is-combining-character.js +0 -13
  1927. package/backend/node_modules/eslint/lib/rules/utils/unicode/is-emoji-modifier.js +0 -13
  1928. package/backend/node_modules/eslint/lib/rules/utils/unicode/is-regional-indicator-symbol.js +0 -13
  1929. package/backend/node_modules/eslint/lib/rules/utils/unicode/is-surrogate-pair.js +0 -14
  1930. package/backend/node_modules/eslint/lib/rules/valid-jsdoc.js +0 -516
  1931. package/backend/node_modules/eslint/lib/rules/valid-typeof.js +0 -127
  1932. package/backend/node_modules/eslint/lib/rules/vars-on-top.js +0 -157
  1933. package/backend/node_modules/eslint/lib/rules/wrap-iife.js +0 -207
  1934. package/backend/node_modules/eslint/lib/rules/wrap-regex.js +0 -61
  1935. package/backend/node_modules/eslint/lib/rules/yield-star-spacing.js +0 -130
  1936. package/backend/node_modules/eslint/lib/rules/yoda.js +0 -353
  1937. package/backend/node_modules/eslint/lib/shared/ajv.js +0 -34
  1938. package/backend/node_modules/eslint/lib/shared/ast-utils.js +0 -29
  1939. package/backend/node_modules/eslint/lib/shared/config-validator.js +0 -347
  1940. package/backend/node_modules/eslint/lib/shared/deprecation-warnings.js +0 -58
  1941. package/backend/node_modules/eslint/lib/shared/directives.js +0 -15
  1942. package/backend/node_modules/eslint/lib/shared/logging.js +0 -30
  1943. package/backend/node_modules/eslint/lib/shared/relative-module-resolver.js +0 -50
  1944. package/backend/node_modules/eslint/lib/shared/runtime-info.js +0 -167
  1945. package/backend/node_modules/eslint/lib/shared/severity.js +0 -49
  1946. package/backend/node_modules/eslint/lib/shared/string-utils.js +0 -60
  1947. package/backend/node_modules/eslint/lib/shared/traverser.js +0 -195
  1948. package/backend/node_modules/eslint/lib/shared/types.js +0 -216
  1949. package/backend/node_modules/eslint/lib/source-code/index.js +0 -5
  1950. package/backend/node_modules/eslint/lib/source-code/source-code.js +0 -1055
  1951. package/backend/node_modules/eslint/lib/source-code/token-store/backward-token-comment-cursor.js +0 -57
  1952. package/backend/node_modules/eslint/lib/source-code/token-store/backward-token-cursor.js +0 -58
  1953. package/backend/node_modules/eslint/lib/source-code/token-store/cursor.js +0 -76
  1954. package/backend/node_modules/eslint/lib/source-code/token-store/cursors.js +0 -90
  1955. package/backend/node_modules/eslint/lib/source-code/token-store/decorative-cursor.js +0 -39
  1956. package/backend/node_modules/eslint/lib/source-code/token-store/filter-cursor.js +0 -43
  1957. package/backend/node_modules/eslint/lib/source-code/token-store/forward-token-comment-cursor.js +0 -57
  1958. package/backend/node_modules/eslint/lib/source-code/token-store/forward-token-cursor.js +0 -63
  1959. package/backend/node_modules/eslint/lib/source-code/token-store/index.js +0 -627
  1960. package/backend/node_modules/eslint/lib/source-code/token-store/limit-cursor.js +0 -40
  1961. package/backend/node_modules/eslint/lib/source-code/token-store/padded-token-cursor.js +0 -38
  1962. package/backend/node_modules/eslint/lib/source-code/token-store/skip-cursor.js +0 -42
  1963. package/backend/node_modules/eslint/lib/source-code/token-store/utils.js +0 -107
  1964. package/backend/node_modules/eslint/lib/unsupported-api.js +0 -30
  1965. package/backend/node_modules/eslint/messages/all-files-ignored.js +0 -16
  1966. package/backend/node_modules/eslint/messages/eslintrc-incompat.js +0 -98
  1967. package/backend/node_modules/eslint/messages/eslintrc-plugins.js +0 -24
  1968. package/backend/node_modules/eslint/messages/extend-config-missing.js +0 -13
  1969. package/backend/node_modules/eslint/messages/failed-to-read-json.js +0 -11
  1970. package/backend/node_modules/eslint/messages/file-not-found.js +0 -10
  1971. package/backend/node_modules/eslint/messages/invalid-rule-options.js +0 -17
  1972. package/backend/node_modules/eslint/messages/invalid-rule-severity.js +0 -13
  1973. package/backend/node_modules/eslint/messages/no-config-found.js +0 -15
  1974. package/backend/node_modules/eslint/messages/plugin-conflict.js +0 -22
  1975. package/backend/node_modules/eslint/messages/plugin-invalid.js +0 -16
  1976. package/backend/node_modules/eslint/messages/plugin-missing.js +0 -19
  1977. package/backend/node_modules/eslint/messages/print-config-with-directory-path.js +0 -8
  1978. package/backend/node_modules/eslint/messages/shared.js +0 -18
  1979. package/backend/node_modules/eslint/messages/whitespace-found.js +0 -11
  1980. package/backend/node_modules/eslint/package.json +0 -181
  1981. package/backend/node_modules/supports-color/browser.js +0 -5
  1982. package/backend/node_modules/supports-color/index.js +0 -135
  1983. package/backend/node_modules/supports-color/license +0 -9
  1984. package/backend/node_modules/supports-color/package.json +0 -53
  1985. package/backend/node_modules/supports-color/readme.md +0 -76
  1986. package/backend/node_modules/ts-api-utils/LICENSE.md +0 -20
  1987. package/backend/node_modules/ts-api-utils/README.md +0 -83
  1988. package/backend/node_modules/ts-api-utils/lib/index.cjs +0 -2307
  1989. package/backend/node_modules/ts-api-utils/lib/index.d.cts +0 -3063
  1990. package/backend/node_modules/ts-api-utils/lib/index.d.ts +0 -3063
  1991. package/backend/node_modules/ts-api-utils/lib/index.js +0 -2106
  1992. package/backend/node_modules/ts-api-utils/package.json +0 -107
  1993. package/backend/node_modules/tsconfig-paths/CHANGELOG.md +0 -407
  1994. package/backend/node_modules/tsconfig-paths/LICENSE +0 -21
  1995. package/backend/node_modules/tsconfig-paths/README.md +0 -269
  1996. package/backend/node_modules/tsconfig-paths/lib/__tests__/config-loader.test.d.ts +0 -1
  1997. package/backend/node_modules/tsconfig-paths/lib/__tests__/config-loader.test.js +0 -87
  1998. package/backend/node_modules/tsconfig-paths/lib/__tests__/config-loader.test.js.map +0 -1
  1999. package/backend/node_modules/tsconfig-paths/lib/__tests__/data/match-path-data.d.ts +0 -17
  2000. package/backend/node_modules/tsconfig-paths/lib/__tests__/data/match-path-data.js +0 -216
  2001. package/backend/node_modules/tsconfig-paths/lib/__tests__/data/match-path-data.js.map +0 -1
  2002. package/backend/node_modules/tsconfig-paths/lib/__tests__/filesystem.test.d.ts +0 -1
  2003. package/backend/node_modules/tsconfig-paths/lib/__tests__/filesystem.test.js +0 -56
  2004. package/backend/node_modules/tsconfig-paths/lib/__tests__/filesystem.test.js.map +0 -1
  2005. package/backend/node_modules/tsconfig-paths/lib/__tests__/mapping-entry.test.d.ts +0 -1
  2006. package/backend/node_modules/tsconfig-paths/lib/__tests__/mapping-entry.test.js +0 -39
  2007. package/backend/node_modules/tsconfig-paths/lib/__tests__/mapping-entry.test.js.map +0 -1
  2008. package/backend/node_modules/tsconfig-paths/lib/__tests__/match-path-async.test.d.ts +0 -1
  2009. package/backend/node_modules/tsconfig-paths/lib/__tests__/match-path-async.test.js +0 -18
  2010. package/backend/node_modules/tsconfig-paths/lib/__tests__/match-path-async.test.js.map +0 -1
  2011. package/backend/node_modules/tsconfig-paths/lib/__tests__/match-path-sync.test.d.ts +0 -1
  2012. package/backend/node_modules/tsconfig-paths/lib/__tests__/match-path-sync.test.js +0 -14
  2013. package/backend/node_modules/tsconfig-paths/lib/__tests__/match-path-sync.test.js.map +0 -1
  2014. package/backend/node_modules/tsconfig-paths/lib/__tests__/try-path.test.d.ts +0 -1
  2015. package/backend/node_modules/tsconfig-paths/lib/__tests__/try-path.test.js +0 -124
  2016. package/backend/node_modules/tsconfig-paths/lib/__tests__/try-path.test.js.map +0 -1
  2017. package/backend/node_modules/tsconfig-paths/lib/__tests__/tsconfig-loader.test.d.ts +0 -1
  2018. package/backend/node_modules/tsconfig-paths/lib/__tests__/tsconfig-loader.test.js +0 -328
  2019. package/backend/node_modules/tsconfig-paths/lib/__tests__/tsconfig-loader.test.js.map +0 -1
  2020. package/backend/node_modules/tsconfig-paths/lib/config-loader.d.ts +0 -33
  2021. package/backend/node_modules/tsconfig-paths/lib/config-loader.js +0 -48
  2022. package/backend/node_modules/tsconfig-paths/lib/config-loader.js.map +0 -1
  2023. package/backend/node_modules/tsconfig-paths/lib/filesystem.d.ts +0 -34
  2024. package/backend/node_modules/tsconfig-paths/lib/filesystem.js +0 -61
  2025. package/backend/node_modules/tsconfig-paths/lib/filesystem.js.map +0 -1
  2026. package/backend/node_modules/tsconfig-paths/lib/index.d.ts +0 -5
  2027. package/backend/node_modules/tsconfig-paths/lib/index.js +0 -15
  2028. package/backend/node_modules/tsconfig-paths/lib/index.js.map +0 -1
  2029. package/backend/node_modules/tsconfig-paths/lib/mapping-entry.d.ts +0 -18
  2030. package/backend/node_modules/tsconfig-paths/lib/mapping-entry.js +0 -54
  2031. package/backend/node_modules/tsconfig-paths/lib/mapping-entry.js.map +0 -1
  2032. package/backend/node_modules/tsconfig-paths/lib/match-path-async.d.ts +0 -21
  2033. package/backend/node_modules/tsconfig-paths/lib/match-path-async.js +0 -116
  2034. package/backend/node_modules/tsconfig-paths/lib/match-path-async.js.map +0 -1
  2035. package/backend/node_modules/tsconfig-paths/lib/match-path-sync.d.ts +0 -32
  2036. package/backend/node_modules/tsconfig-paths/lib/match-path-sync.js +0 -91
  2037. package/backend/node_modules/tsconfig-paths/lib/match-path-sync.js.map +0 -1
  2038. package/backend/node_modules/tsconfig-paths/lib/register.d.ts +0 -12
  2039. package/backend/node_modules/tsconfig-paths/lib/register.js +0 -112
  2040. package/backend/node_modules/tsconfig-paths/lib/register.js.map +0 -1
  2041. package/backend/node_modules/tsconfig-paths/lib/try-path.d.ts +0 -15
  2042. package/backend/node_modules/tsconfig-paths/lib/try-path.js +0 -91
  2043. package/backend/node_modules/tsconfig-paths/lib/try-path.js.map +0 -1
  2044. package/backend/node_modules/tsconfig-paths/lib/tsconfig-loader.d.ts +0 -28
  2045. package/backend/node_modules/tsconfig-paths/lib/tsconfig-loader.js +0 -148
  2046. package/backend/node_modules/tsconfig-paths/lib/tsconfig-loader.js.map +0 -1
  2047. package/backend/node_modules/tsconfig-paths/package.json +0 -74
  2048. package/backend/node_modules/tsconfig-paths/register.js +0 -1
  2049. package/backend/node_modules/tsconfig-paths/src/__tests__/config-loader.test.ts +0 -101
  2050. package/backend/node_modules/tsconfig-paths/src/__tests__/data/match-path-data.ts +0 -230
  2051. package/backend/node_modules/tsconfig-paths/src/__tests__/filesystem.test.ts +0 -57
  2052. package/backend/node_modules/tsconfig-paths/src/__tests__/mapping-entry.test.ts +0 -43
  2053. package/backend/node_modules/tsconfig-paths/src/__tests__/match-path-async.test.ts +0 -26
  2054. package/backend/node_modules/tsconfig-paths/src/__tests__/match-path-sync.test.ts +0 -22
  2055. package/backend/node_modules/tsconfig-paths/src/__tests__/try-path.test.ts +0 -141
  2056. package/backend/node_modules/tsconfig-paths/src/__tests__/tsconfig-loader.test.ts +0 -428
  2057. package/backend/node_modules/tsconfig-paths/src/__tests__/tsconfig-named.json +0 -10
  2058. package/backend/node_modules/tsconfig-paths/src/config-loader.ts +0 -89
  2059. package/backend/node_modules/tsconfig-paths/src/filesystem.ts +0 -93
  2060. package/backend/node_modules/tsconfig-paths/src/index.ts +0 -24
  2061. package/backend/node_modules/tsconfig-paths/src/mapping-entry.ts +0 -65
  2062. package/backend/node_modules/tsconfig-paths/src/match-path-async.ts +0 -223
  2063. package/backend/node_modules/tsconfig-paths/src/match-path-sync.ts +0 -146
  2064. package/backend/node_modules/tsconfig-paths/src/register.ts +0 -123
  2065. package/backend/node_modules/tsconfig-paths/src/try-path.ts +0 -103
  2066. package/backend/node_modules/tsconfig-paths/src/tsconfig-loader.ts +0 -229
@@ -0,0 +1,4362 @@
1
+ /**
2
+ * The `node:fs` module enables interacting with the file system in a
3
+ * way modeled on standard POSIX functions.
4
+ *
5
+ * To use the promise-based APIs:
6
+ *
7
+ * ```js
8
+ * import * as fs from 'node:fs/promises';
9
+ * ```
10
+ *
11
+ * To use the callback and sync APIs:
12
+ *
13
+ * ```js
14
+ * import * as fs from 'node:fs';
15
+ * ```
16
+ *
17
+ * All file system operations have synchronous, callback, and promise-based
18
+ * forms, and are accessible using both CommonJS syntax and ES6 Modules (ESM).
19
+ * @see [source](https://github.com/nodejs/node/blob/v20.13.1/lib/fs.js)
20
+ */
21
+ declare module "fs" {
22
+ import * as stream from "node:stream";
23
+ import { Abortable, EventEmitter } from "node:events";
24
+ import { URL } from "node:url";
25
+ import * as promises from "node:fs/promises";
26
+ export { promises };
27
+ /**
28
+ * Valid types for path values in "fs".
29
+ */
30
+ export type PathLike = string | Buffer | URL;
31
+ export type PathOrFileDescriptor = PathLike | number;
32
+ export type TimeLike = string | number | Date;
33
+ export type NoParamCallback = (err: NodeJS.ErrnoException | null) => void;
34
+ export type BufferEncodingOption =
35
+ | "buffer"
36
+ | {
37
+ encoding: "buffer";
38
+ };
39
+ export interface ObjectEncodingOptions {
40
+ encoding?: BufferEncoding | null | undefined;
41
+ }
42
+ export type EncodingOption = ObjectEncodingOptions | BufferEncoding | undefined | null;
43
+ export type OpenMode = number | string;
44
+ export type Mode = number | string;
45
+ export interface StatsBase<T> {
46
+ isFile(): boolean;
47
+ isDirectory(): boolean;
48
+ isBlockDevice(): boolean;
49
+ isCharacterDevice(): boolean;
50
+ isSymbolicLink(): boolean;
51
+ isFIFO(): boolean;
52
+ isSocket(): boolean;
53
+ dev: T;
54
+ ino: T;
55
+ mode: T;
56
+ nlink: T;
57
+ uid: T;
58
+ gid: T;
59
+ rdev: T;
60
+ size: T;
61
+ blksize: T;
62
+ blocks: T;
63
+ atimeMs: T;
64
+ mtimeMs: T;
65
+ ctimeMs: T;
66
+ birthtimeMs: T;
67
+ atime: Date;
68
+ mtime: Date;
69
+ ctime: Date;
70
+ birthtime: Date;
71
+ }
72
+ export interface Stats extends StatsBase<number> {}
73
+ /**
74
+ * A `fs.Stats` object provides information about a file.
75
+ *
76
+ * Objects returned from {@link stat}, {@link lstat}, {@link fstat}, and
77
+ * their synchronous counterparts are of this type.
78
+ * If `bigint` in the `options` passed to those methods is true, the numeric values
79
+ * will be `bigint` instead of `number`, and the object will contain additional
80
+ * nanosecond-precision properties suffixed with `Ns`. `Stat` objects are not to be created directly using the `new` keyword.
81
+ *
82
+ * ```console
83
+ * Stats {
84
+ * dev: 2114,
85
+ * ino: 48064969,
86
+ * mode: 33188,
87
+ * nlink: 1,
88
+ * uid: 85,
89
+ * gid: 100,
90
+ * rdev: 0,
91
+ * size: 527,
92
+ * blksize: 4096,
93
+ * blocks: 8,
94
+ * atimeMs: 1318289051000.1,
95
+ * mtimeMs: 1318289051000.1,
96
+ * ctimeMs: 1318289051000.1,
97
+ * birthtimeMs: 1318289051000.1,
98
+ * atime: Mon, 10 Oct 2011 23:24:11 GMT,
99
+ * mtime: Mon, 10 Oct 2011 23:24:11 GMT,
100
+ * ctime: Mon, 10 Oct 2011 23:24:11 GMT,
101
+ * birthtime: Mon, 10 Oct 2011 23:24:11 GMT }
102
+ * ```
103
+ *
104
+ * `bigint` version:
105
+ *
106
+ * ```console
107
+ * BigIntStats {
108
+ * dev: 2114n,
109
+ * ino: 48064969n,
110
+ * mode: 33188n,
111
+ * nlink: 1n,
112
+ * uid: 85n,
113
+ * gid: 100n,
114
+ * rdev: 0n,
115
+ * size: 527n,
116
+ * blksize: 4096n,
117
+ * blocks: 8n,
118
+ * atimeMs: 1318289051000n,
119
+ * mtimeMs: 1318289051000n,
120
+ * ctimeMs: 1318289051000n,
121
+ * birthtimeMs: 1318289051000n,
122
+ * atimeNs: 1318289051000000000n,
123
+ * mtimeNs: 1318289051000000000n,
124
+ * ctimeNs: 1318289051000000000n,
125
+ * birthtimeNs: 1318289051000000000n,
126
+ * atime: Mon, 10 Oct 2011 23:24:11 GMT,
127
+ * mtime: Mon, 10 Oct 2011 23:24:11 GMT,
128
+ * ctime: Mon, 10 Oct 2011 23:24:11 GMT,
129
+ * birthtime: Mon, 10 Oct 2011 23:24:11 GMT }
130
+ * ```
131
+ * @since v0.1.21
132
+ */
133
+ export class Stats {}
134
+ export interface StatsFsBase<T> {
135
+ /** Type of file system. */
136
+ type: T;
137
+ /** Optimal transfer block size. */
138
+ bsize: T;
139
+ /** Total data blocks in file system. */
140
+ blocks: T;
141
+ /** Free blocks in file system. */
142
+ bfree: T;
143
+ /** Available blocks for unprivileged users */
144
+ bavail: T;
145
+ /** Total file nodes in file system. */
146
+ files: T;
147
+ /** Free file nodes in file system. */
148
+ ffree: T;
149
+ }
150
+ export interface StatsFs extends StatsFsBase<number> {}
151
+ /**
152
+ * Provides information about a mounted file system.
153
+ *
154
+ * Objects returned from {@link statfs} and its synchronous counterpart are of
155
+ * this type. If `bigint` in the `options` passed to those methods is `true`, the
156
+ * numeric values will be `bigint` instead of `number`.
157
+ *
158
+ * ```console
159
+ * StatFs {
160
+ * type: 1397114950,
161
+ * bsize: 4096,
162
+ * blocks: 121938943,
163
+ * bfree: 61058895,
164
+ * bavail: 61058895,
165
+ * files: 999,
166
+ * ffree: 1000000
167
+ * }
168
+ * ```
169
+ *
170
+ * `bigint` version:
171
+ *
172
+ * ```console
173
+ * StatFs {
174
+ * type: 1397114950n,
175
+ * bsize: 4096n,
176
+ * blocks: 121938943n,
177
+ * bfree: 61058895n,
178
+ * bavail: 61058895n,
179
+ * files: 999n,
180
+ * ffree: 1000000n
181
+ * }
182
+ * ```
183
+ * @since v19.6.0, v18.15.0
184
+ */
185
+ export class StatsFs {}
186
+ export interface BigIntStatsFs extends StatsFsBase<bigint> {}
187
+ export interface StatFsOptions {
188
+ bigint?: boolean | undefined;
189
+ }
190
+ /**
191
+ * A representation of a directory entry, which can be a file or a subdirectory
192
+ * within the directory, as returned by reading from an `fs.Dir`. The
193
+ * directory entry is a combination of the file name and file type pairs.
194
+ *
195
+ * Additionally, when {@link readdir} or {@link readdirSync} is called with
196
+ * the `withFileTypes` option set to `true`, the resulting array is filled with `fs.Dirent` objects, rather than strings or `Buffer` s.
197
+ * @since v10.10.0
198
+ */
199
+ export class Dirent<Name extends string | Buffer = string> {
200
+ /**
201
+ * Returns `true` if the `fs.Dirent` object describes a regular file.
202
+ * @since v10.10.0
203
+ */
204
+ isFile(): boolean;
205
+ /**
206
+ * Returns `true` if the `fs.Dirent` object describes a file system
207
+ * directory.
208
+ * @since v10.10.0
209
+ */
210
+ isDirectory(): boolean;
211
+ /**
212
+ * Returns `true` if the `fs.Dirent` object describes a block device.
213
+ * @since v10.10.0
214
+ */
215
+ isBlockDevice(): boolean;
216
+ /**
217
+ * Returns `true` if the `fs.Dirent` object describes a character device.
218
+ * @since v10.10.0
219
+ */
220
+ isCharacterDevice(): boolean;
221
+ /**
222
+ * Returns `true` if the `fs.Dirent` object describes a symbolic link.
223
+ * @since v10.10.0
224
+ */
225
+ isSymbolicLink(): boolean;
226
+ /**
227
+ * Returns `true` if the `fs.Dirent` object describes a first-in-first-out
228
+ * (FIFO) pipe.
229
+ * @since v10.10.0
230
+ */
231
+ isFIFO(): boolean;
232
+ /**
233
+ * Returns `true` if the `fs.Dirent` object describes a socket.
234
+ * @since v10.10.0
235
+ */
236
+ isSocket(): boolean;
237
+ /**
238
+ * The file name that this `fs.Dirent` object refers to. The type of this
239
+ * value is determined by the `options.encoding` passed to {@link readdir} or {@link readdirSync}.
240
+ * @since v10.10.0
241
+ */
242
+ name: Name;
243
+ /**
244
+ * The base path that this `fs.Dirent` object refers to.
245
+ * @since v20.12.0
246
+ */
247
+ parentPath: string;
248
+ /**
249
+ * Alias for `dirent.parentPath`.
250
+ * @since v20.1.0
251
+ * @deprecated Since v20.12.0
252
+ */
253
+ path: string;
254
+ }
255
+ /**
256
+ * A class representing a directory stream.
257
+ *
258
+ * Created by {@link opendir}, {@link opendirSync}, or `fsPromises.opendir()`.
259
+ *
260
+ * ```js
261
+ * import { opendir } from 'node:fs/promises';
262
+ *
263
+ * try {
264
+ * const dir = await opendir('./');
265
+ * for await (const dirent of dir)
266
+ * console.log(dirent.name);
267
+ * } catch (err) {
268
+ * console.error(err);
269
+ * }
270
+ * ```
271
+ *
272
+ * When using the async iterator, the `fs.Dir` object will be automatically
273
+ * closed after the iterator exits.
274
+ * @since v12.12.0
275
+ */
276
+ export class Dir implements AsyncIterable<Dirent> {
277
+ /**
278
+ * The read-only path of this directory as was provided to {@link opendir},{@link opendirSync}, or `fsPromises.opendir()`.
279
+ * @since v12.12.0
280
+ */
281
+ readonly path: string;
282
+ /**
283
+ * Asynchronously iterates over the directory via `readdir(3)` until all entries have been read.
284
+ */
285
+ [Symbol.asyncIterator](): NodeJS.AsyncIterator<Dirent>;
286
+ /**
287
+ * Asynchronously close the directory's underlying resource handle.
288
+ * Subsequent reads will result in errors.
289
+ *
290
+ * A promise is returned that will be fulfilled after the resource has been
291
+ * closed.
292
+ * @since v12.12.0
293
+ */
294
+ close(): Promise<void>;
295
+ close(cb: NoParamCallback): void;
296
+ /**
297
+ * Synchronously close the directory's underlying resource handle.
298
+ * Subsequent reads will result in errors.
299
+ * @since v12.12.0
300
+ */
301
+ closeSync(): void;
302
+ /**
303
+ * Asynchronously read the next directory entry via [`readdir(3)`](http://man7.org/linux/man-pages/man3/readdir.3.html) as an `fs.Dirent`.
304
+ *
305
+ * A promise is returned that will be fulfilled with an `fs.Dirent`, or `null` if there are no more directory entries to read.
306
+ *
307
+ * Directory entries returned by this function are in no particular order as
308
+ * provided by the operating system's underlying directory mechanisms.
309
+ * Entries added or removed while iterating over the directory might not be
310
+ * included in the iteration results.
311
+ * @since v12.12.0
312
+ * @return containing {fs.Dirent|null}
313
+ */
314
+ read(): Promise<Dirent | null>;
315
+ read(cb: (err: NodeJS.ErrnoException | null, dirEnt: Dirent | null) => void): void;
316
+ /**
317
+ * Synchronously read the next directory entry as an `fs.Dirent`. See the
318
+ * POSIX [`readdir(3)`](http://man7.org/linux/man-pages/man3/readdir.3.html) documentation for more detail.
319
+ *
320
+ * If there are no more directory entries to read, `null` will be returned.
321
+ *
322
+ * Directory entries returned by this function are in no particular order as
323
+ * provided by the operating system's underlying directory mechanisms.
324
+ * Entries added or removed while iterating over the directory might not be
325
+ * included in the iteration results.
326
+ * @since v12.12.0
327
+ */
328
+ readSync(): Dirent | null;
329
+ }
330
+ /**
331
+ * Class: fs.StatWatcher
332
+ * @since v14.3.0, v12.20.0
333
+ * Extends `EventEmitter`
334
+ * A successful call to {@link watchFile} method will return a new fs.StatWatcher object.
335
+ */
336
+ export interface StatWatcher extends EventEmitter {
337
+ /**
338
+ * When called, requests that the Node.js event loop _not_ exit so long as the `fs.StatWatcher` is active. Calling `watcher.ref()` multiple times will have
339
+ * no effect.
340
+ *
341
+ * By default, all `fs.StatWatcher` objects are "ref'ed", making it normally
342
+ * unnecessary to call `watcher.ref()` unless `watcher.unref()` had been
343
+ * called previously.
344
+ * @since v14.3.0, v12.20.0
345
+ */
346
+ ref(): this;
347
+ /**
348
+ * When called, the active `fs.StatWatcher` object will not require the Node.js
349
+ * event loop to remain active. If there is no other activity keeping the
350
+ * event loop running, the process may exit before the `fs.StatWatcher` object's
351
+ * callback is invoked. Calling `watcher.unref()` multiple times will have
352
+ * no effect.
353
+ * @since v14.3.0, v12.20.0
354
+ */
355
+ unref(): this;
356
+ }
357
+ export interface FSWatcher extends EventEmitter {
358
+ /**
359
+ * Stop watching for changes on the given `fs.FSWatcher`. Once stopped, the `fs.FSWatcher` object is no longer usable.
360
+ * @since v0.5.8
361
+ */
362
+ close(): void;
363
+ /**
364
+ * When called, requests that the Node.js event loop _not_ exit so long as the `fs.FSWatcher` is active. Calling `watcher.ref()` multiple times will have
365
+ * no effect.
366
+ *
367
+ * By default, all `fs.FSWatcher` objects are "ref'ed", making it normally
368
+ * unnecessary to call `watcher.ref()` unless `watcher.unref()` had been
369
+ * called previously.
370
+ * @since v14.3.0, v12.20.0
371
+ */
372
+ ref(): this;
373
+ /**
374
+ * When called, the active `fs.FSWatcher` object will not require the Node.js
375
+ * event loop to remain active. If there is no other activity keeping the
376
+ * event loop running, the process may exit before the `fs.FSWatcher` object's
377
+ * callback is invoked. Calling `watcher.unref()` multiple times will have
378
+ * no effect.
379
+ * @since v14.3.0, v12.20.0
380
+ */
381
+ unref(): this;
382
+ /**
383
+ * events.EventEmitter
384
+ * 1. change
385
+ * 2. close
386
+ * 3. error
387
+ */
388
+ addListener(event: string, listener: (...args: any[]) => void): this;
389
+ addListener(event: "change", listener: (eventType: string, filename: string | Buffer) => void): this;
390
+ addListener(event: "close", listener: () => void): this;
391
+ addListener(event: "error", listener: (error: Error) => void): this;
392
+ on(event: string, listener: (...args: any[]) => void): this;
393
+ on(event: "change", listener: (eventType: string, filename: string | Buffer) => void): this;
394
+ on(event: "close", listener: () => void): this;
395
+ on(event: "error", listener: (error: Error) => void): this;
396
+ once(event: string, listener: (...args: any[]) => void): this;
397
+ once(event: "change", listener: (eventType: string, filename: string | Buffer) => void): this;
398
+ once(event: "close", listener: () => void): this;
399
+ once(event: "error", listener: (error: Error) => void): this;
400
+ prependListener(event: string, listener: (...args: any[]) => void): this;
401
+ prependListener(event: "change", listener: (eventType: string, filename: string | Buffer) => void): this;
402
+ prependListener(event: "close", listener: () => void): this;
403
+ prependListener(event: "error", listener: (error: Error) => void): this;
404
+ prependOnceListener(event: string, listener: (...args: any[]) => void): this;
405
+ prependOnceListener(event: "change", listener: (eventType: string, filename: string | Buffer) => void): this;
406
+ prependOnceListener(event: "close", listener: () => void): this;
407
+ prependOnceListener(event: "error", listener: (error: Error) => void): this;
408
+ }
409
+ /**
410
+ * Instances of `fs.ReadStream` are created and returned using the {@link createReadStream} function.
411
+ * @since v0.1.93
412
+ */
413
+ export class ReadStream extends stream.Readable {
414
+ close(callback?: (err?: NodeJS.ErrnoException | null) => void): void;
415
+ /**
416
+ * The number of bytes that have been read so far.
417
+ * @since v6.4.0
418
+ */
419
+ bytesRead: number;
420
+ /**
421
+ * The path to the file the stream is reading from as specified in the first
422
+ * argument to `fs.createReadStream()`. If `path` is passed as a string, then`readStream.path` will be a string. If `path` is passed as a `Buffer`, then`readStream.path` will be a
423
+ * `Buffer`. If `fd` is specified, then`readStream.path` will be `undefined`.
424
+ * @since v0.1.93
425
+ */
426
+ path: string | Buffer;
427
+ /**
428
+ * This property is `true` if the underlying file has not been opened yet,
429
+ * i.e. before the `'ready'` event is emitted.
430
+ * @since v11.2.0, v10.16.0
431
+ */
432
+ pending: boolean;
433
+ /**
434
+ * events.EventEmitter
435
+ * 1. open
436
+ * 2. close
437
+ * 3. ready
438
+ */
439
+ addListener<K extends keyof ReadStreamEvents>(event: K, listener: ReadStreamEvents[K]): this;
440
+ on<K extends keyof ReadStreamEvents>(event: K, listener: ReadStreamEvents[K]): this;
441
+ once<K extends keyof ReadStreamEvents>(event: K, listener: ReadStreamEvents[K]): this;
442
+ prependListener<K extends keyof ReadStreamEvents>(event: K, listener: ReadStreamEvents[K]): this;
443
+ prependOnceListener<K extends keyof ReadStreamEvents>(event: K, listener: ReadStreamEvents[K]): this;
444
+ }
445
+
446
+ /**
447
+ * The Keys are events of the ReadStream and the values are the functions that are called when the event is emitted.
448
+ */
449
+ type ReadStreamEvents = {
450
+ close: () => void;
451
+ data: (chunk: Buffer | string) => void;
452
+ end: () => void;
453
+ error: (err: Error) => void;
454
+ open: (fd: number) => void;
455
+ pause: () => void;
456
+ readable: () => void;
457
+ ready: () => void;
458
+ resume: () => void;
459
+ } & CustomEvents;
460
+
461
+ /**
462
+ * string & {} allows to allow any kind of strings for the event
463
+ * but still allows to have auto completion for the normal events.
464
+ */
465
+ type CustomEvents = { [Key in string & {} | symbol]: (...args: any[]) => void };
466
+
467
+ /**
468
+ * The Keys are events of the WriteStream and the values are the functions that are called when the event is emitted.
469
+ */
470
+ type WriteStreamEvents = {
471
+ close: () => void;
472
+ drain: () => void;
473
+ error: (err: Error) => void;
474
+ finish: () => void;
475
+ open: (fd: number) => void;
476
+ pipe: (src: stream.Readable) => void;
477
+ ready: () => void;
478
+ unpipe: (src: stream.Readable) => void;
479
+ } & CustomEvents;
480
+ /**
481
+ * * Extends `stream.Writable`
482
+ *
483
+ * Instances of `fs.WriteStream` are created and returned using the {@link createWriteStream} function.
484
+ * @since v0.1.93
485
+ */
486
+ export class WriteStream extends stream.Writable {
487
+ /**
488
+ * Closes `writeStream`. Optionally accepts a
489
+ * callback that will be executed once the `writeStream`is closed.
490
+ * @since v0.9.4
491
+ */
492
+ close(callback?: (err?: NodeJS.ErrnoException | null) => void): void;
493
+ /**
494
+ * The number of bytes written so far. Does not include data that is still queued
495
+ * for writing.
496
+ * @since v0.4.7
497
+ */
498
+ bytesWritten: number;
499
+ /**
500
+ * The path to the file the stream is writing to as specified in the first
501
+ * argument to {@link createWriteStream}. If `path` is passed as a string, then`writeStream.path` will be a string. If `path` is passed as a `Buffer`, then`writeStream.path` will be a
502
+ * `Buffer`.
503
+ * @since v0.1.93
504
+ */
505
+ path: string | Buffer;
506
+ /**
507
+ * This property is `true` if the underlying file has not been opened yet,
508
+ * i.e. before the `'ready'` event is emitted.
509
+ * @since v11.2.0
510
+ */
511
+ pending: boolean;
512
+ /**
513
+ * events.EventEmitter
514
+ * 1. open
515
+ * 2. close
516
+ * 3. ready
517
+ */
518
+ addListener<K extends keyof WriteStreamEvents>(event: K, listener: WriteStreamEvents[K]): this;
519
+ on<K extends keyof WriteStreamEvents>(event: K, listener: WriteStreamEvents[K]): this;
520
+ once<K extends keyof WriteStreamEvents>(event: K, listener: WriteStreamEvents[K]): this;
521
+ prependListener<K extends keyof WriteStreamEvents>(event: K, listener: WriteStreamEvents[K]): this;
522
+ prependOnceListener<K extends keyof WriteStreamEvents>(event: K, listener: WriteStreamEvents[K]): this;
523
+ }
524
+ /**
525
+ * Asynchronously rename file at `oldPath` to the pathname provided
526
+ * as `newPath`. In the case that `newPath` already exists, it will
527
+ * be overwritten. If there is a directory at `newPath`, an error will
528
+ * be raised instead. No arguments other than a possible exception are
529
+ * given to the completion callback.
530
+ *
531
+ * See also: [`rename(2)`](http://man7.org/linux/man-pages/man2/rename.2.html).
532
+ *
533
+ * ```js
534
+ * import { rename } from 'node:fs';
535
+ *
536
+ * rename('oldFile.txt', 'newFile.txt', (err) => {
537
+ * if (err) throw err;
538
+ * console.log('Rename complete!');
539
+ * });
540
+ * ```
541
+ * @since v0.0.2
542
+ */
543
+ export function rename(oldPath: PathLike, newPath: PathLike, callback: NoParamCallback): void;
544
+ export namespace rename {
545
+ /**
546
+ * Asynchronous rename(2) - Change the name or location of a file or directory.
547
+ * @param oldPath A path to a file. If a URL is provided, it must use the `file:` protocol.
548
+ * URL support is _experimental_.
549
+ * @param newPath A path to a file. If a URL is provided, it must use the `file:` protocol.
550
+ * URL support is _experimental_.
551
+ */
552
+ function __promisify__(oldPath: PathLike, newPath: PathLike): Promise<void>;
553
+ }
554
+ /**
555
+ * Renames the file from `oldPath` to `newPath`. Returns `undefined`.
556
+ *
557
+ * See the POSIX [`rename(2)`](http://man7.org/linux/man-pages/man2/rename.2.html) documentation for more details.
558
+ * @since v0.1.21
559
+ */
560
+ export function renameSync(oldPath: PathLike, newPath: PathLike): void;
561
+ /**
562
+ * Truncates the file. No arguments other than a possible exception are
563
+ * given to the completion callback. A file descriptor can also be passed as the
564
+ * first argument. In this case, `fs.ftruncate()` is called.
565
+ *
566
+ * ```js
567
+ * import { truncate } from 'node:fs';
568
+ * // Assuming that 'path/file.txt' is a regular file.
569
+ * truncate('path/file.txt', (err) => {
570
+ * if (err) throw err;
571
+ * console.log('path/file.txt was truncated');
572
+ * });
573
+ * ```
574
+ *
575
+ * Passing a file descriptor is deprecated and may result in an error being thrown
576
+ * in the future.
577
+ *
578
+ * See the POSIX [`truncate(2)`](http://man7.org/linux/man-pages/man2/truncate.2.html) documentation for more details.
579
+ * @since v0.8.6
580
+ * @param [len=0]
581
+ */
582
+ export function truncate(path: PathLike, len: number | undefined, callback: NoParamCallback): void;
583
+ /**
584
+ * Asynchronous truncate(2) - Truncate a file to a specified length.
585
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
586
+ */
587
+ export function truncate(path: PathLike, callback: NoParamCallback): void;
588
+ export namespace truncate {
589
+ /**
590
+ * Asynchronous truncate(2) - Truncate a file to a specified length.
591
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
592
+ * @param len If not specified, defaults to `0`.
593
+ */
594
+ function __promisify__(path: PathLike, len?: number): Promise<void>;
595
+ }
596
+ /**
597
+ * Truncates the file. Returns `undefined`. A file descriptor can also be
598
+ * passed as the first argument. In this case, `fs.ftruncateSync()` is called.
599
+ *
600
+ * Passing a file descriptor is deprecated and may result in an error being thrown
601
+ * in the future.
602
+ * @since v0.8.6
603
+ * @param [len=0]
604
+ */
605
+ export function truncateSync(path: PathLike, len?: number): void;
606
+ /**
607
+ * Truncates the file descriptor. No arguments other than a possible exception are
608
+ * given to the completion callback.
609
+ *
610
+ * See the POSIX [`ftruncate(2)`](http://man7.org/linux/man-pages/man2/ftruncate.2.html) documentation for more detail.
611
+ *
612
+ * If the file referred to by the file descriptor was larger than `len` bytes, only
613
+ * the first `len` bytes will be retained in the file.
614
+ *
615
+ * For example, the following program retains only the first four bytes of the
616
+ * file:
617
+ *
618
+ * ```js
619
+ * import { open, close, ftruncate } from 'node:fs';
620
+ *
621
+ * function closeFd(fd) {
622
+ * close(fd, (err) => {
623
+ * if (err) throw err;
624
+ * });
625
+ * }
626
+ *
627
+ * open('temp.txt', 'r+', (err, fd) => {
628
+ * if (err) throw err;
629
+ *
630
+ * try {
631
+ * ftruncate(fd, 4, (err) => {
632
+ * closeFd(fd);
633
+ * if (err) throw err;
634
+ * });
635
+ * } catch (err) {
636
+ * closeFd(fd);
637
+ * if (err) throw err;
638
+ * }
639
+ * });
640
+ * ```
641
+ *
642
+ * If the file previously was shorter than `len` bytes, it is extended, and the
643
+ * extended part is filled with null bytes (`'\0'`):
644
+ *
645
+ * If `len` is negative then `0` will be used.
646
+ * @since v0.8.6
647
+ * @param [len=0]
648
+ */
649
+ export function ftruncate(fd: number, len: number | undefined, callback: NoParamCallback): void;
650
+ /**
651
+ * Asynchronous ftruncate(2) - Truncate a file to a specified length.
652
+ * @param fd A file descriptor.
653
+ */
654
+ export function ftruncate(fd: number, callback: NoParamCallback): void;
655
+ export namespace ftruncate {
656
+ /**
657
+ * Asynchronous ftruncate(2) - Truncate a file to a specified length.
658
+ * @param fd A file descriptor.
659
+ * @param len If not specified, defaults to `0`.
660
+ */
661
+ function __promisify__(fd: number, len?: number): Promise<void>;
662
+ }
663
+ /**
664
+ * Truncates the file descriptor. Returns `undefined`.
665
+ *
666
+ * For detailed information, see the documentation of the asynchronous version of
667
+ * this API: {@link ftruncate}.
668
+ * @since v0.8.6
669
+ * @param [len=0]
670
+ */
671
+ export function ftruncateSync(fd: number, len?: number): void;
672
+ /**
673
+ * Asynchronously changes owner and group of a file. No arguments other than a
674
+ * possible exception are given to the completion callback.
675
+ *
676
+ * See the POSIX [`chown(2)`](http://man7.org/linux/man-pages/man2/chown.2.html) documentation for more detail.
677
+ * @since v0.1.97
678
+ */
679
+ export function chown(path: PathLike, uid: number, gid: number, callback: NoParamCallback): void;
680
+ export namespace chown {
681
+ /**
682
+ * Asynchronous chown(2) - Change ownership of a file.
683
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
684
+ */
685
+ function __promisify__(path: PathLike, uid: number, gid: number): Promise<void>;
686
+ }
687
+ /**
688
+ * Synchronously changes owner and group of a file. Returns `undefined`.
689
+ * This is the synchronous version of {@link chown}.
690
+ *
691
+ * See the POSIX [`chown(2)`](http://man7.org/linux/man-pages/man2/chown.2.html) documentation for more detail.
692
+ * @since v0.1.97
693
+ */
694
+ export function chownSync(path: PathLike, uid: number, gid: number): void;
695
+ /**
696
+ * Sets the owner of the file. No arguments other than a possible exception are
697
+ * given to the completion callback.
698
+ *
699
+ * See the POSIX [`fchown(2)`](http://man7.org/linux/man-pages/man2/fchown.2.html) documentation for more detail.
700
+ * @since v0.4.7
701
+ */
702
+ export function fchown(fd: number, uid: number, gid: number, callback: NoParamCallback): void;
703
+ export namespace fchown {
704
+ /**
705
+ * Asynchronous fchown(2) - Change ownership of a file.
706
+ * @param fd A file descriptor.
707
+ */
708
+ function __promisify__(fd: number, uid: number, gid: number): Promise<void>;
709
+ }
710
+ /**
711
+ * Sets the owner of the file. Returns `undefined`.
712
+ *
713
+ * See the POSIX [`fchown(2)`](http://man7.org/linux/man-pages/man2/fchown.2.html) documentation for more detail.
714
+ * @since v0.4.7
715
+ * @param uid The file's new owner's user id.
716
+ * @param gid The file's new group's group id.
717
+ */
718
+ export function fchownSync(fd: number, uid: number, gid: number): void;
719
+ /**
720
+ * Set the owner of the symbolic link. No arguments other than a possible
721
+ * exception are given to the completion callback.
722
+ *
723
+ * See the POSIX [`lchown(2)`](http://man7.org/linux/man-pages/man2/lchown.2.html) documentation for more detail.
724
+ */
725
+ export function lchown(path: PathLike, uid: number, gid: number, callback: NoParamCallback): void;
726
+ export namespace lchown {
727
+ /**
728
+ * Asynchronous lchown(2) - Change ownership of a file. Does not dereference symbolic links.
729
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
730
+ */
731
+ function __promisify__(path: PathLike, uid: number, gid: number): Promise<void>;
732
+ }
733
+ /**
734
+ * Set the owner for the path. Returns `undefined`.
735
+ *
736
+ * See the POSIX [`lchown(2)`](http://man7.org/linux/man-pages/man2/lchown.2.html) documentation for more details.
737
+ * @param uid The file's new owner's user id.
738
+ * @param gid The file's new group's group id.
739
+ */
740
+ export function lchownSync(path: PathLike, uid: number, gid: number): void;
741
+ /**
742
+ * Changes the access and modification times of a file in the same way as {@link utimes}, with the difference that if the path refers to a symbolic
743
+ * link, then the link is not dereferenced: instead, the timestamps of the
744
+ * symbolic link itself are changed.
745
+ *
746
+ * No arguments other than a possible exception are given to the completion
747
+ * callback.
748
+ * @since v14.5.0, v12.19.0
749
+ */
750
+ export function lutimes(path: PathLike, atime: TimeLike, mtime: TimeLike, callback: NoParamCallback): void;
751
+ export namespace lutimes {
752
+ /**
753
+ * Changes the access and modification times of a file in the same way as `fsPromises.utimes()`,
754
+ * with the difference that if the path refers to a symbolic link, then the link is not
755
+ * dereferenced: instead, the timestamps of the symbolic link itself are changed.
756
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
757
+ * @param atime The last access time. If a string is provided, it will be coerced to number.
758
+ * @param mtime The last modified time. If a string is provided, it will be coerced to number.
759
+ */
760
+ function __promisify__(path: PathLike, atime: TimeLike, mtime: TimeLike): Promise<void>;
761
+ }
762
+ /**
763
+ * Change the file system timestamps of the symbolic link referenced by `path`.
764
+ * Returns `undefined`, or throws an exception when parameters are incorrect or
765
+ * the operation fails. This is the synchronous version of {@link lutimes}.
766
+ * @since v14.5.0, v12.19.0
767
+ */
768
+ export function lutimesSync(path: PathLike, atime: TimeLike, mtime: TimeLike): void;
769
+ /**
770
+ * Asynchronously changes the permissions of a file. No arguments other than a
771
+ * possible exception are given to the completion callback.
772
+ *
773
+ * See the POSIX [`chmod(2)`](http://man7.org/linux/man-pages/man2/chmod.2.html) documentation for more detail.
774
+ *
775
+ * ```js
776
+ * import { chmod } from 'node:fs';
777
+ *
778
+ * chmod('my_file.txt', 0o775, (err) => {
779
+ * if (err) throw err;
780
+ * console.log('The permissions for file "my_file.txt" have been changed!');
781
+ * });
782
+ * ```
783
+ * @since v0.1.30
784
+ */
785
+ export function chmod(path: PathLike, mode: Mode, callback: NoParamCallback): void;
786
+ export namespace chmod {
787
+ /**
788
+ * Asynchronous chmod(2) - Change permissions of a file.
789
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
790
+ * @param mode A file mode. If a string is passed, it is parsed as an octal integer.
791
+ */
792
+ function __promisify__(path: PathLike, mode: Mode): Promise<void>;
793
+ }
794
+ /**
795
+ * For detailed information, see the documentation of the asynchronous version of
796
+ * this API: {@link chmod}.
797
+ *
798
+ * See the POSIX [`chmod(2)`](http://man7.org/linux/man-pages/man2/chmod.2.html) documentation for more detail.
799
+ * @since v0.6.7
800
+ */
801
+ export function chmodSync(path: PathLike, mode: Mode): void;
802
+ /**
803
+ * Sets the permissions on the file. No arguments other than a possible exception
804
+ * are given to the completion callback.
805
+ *
806
+ * See the POSIX [`fchmod(2)`](http://man7.org/linux/man-pages/man2/fchmod.2.html) documentation for more detail.
807
+ * @since v0.4.7
808
+ */
809
+ export function fchmod(fd: number, mode: Mode, callback: NoParamCallback): void;
810
+ export namespace fchmod {
811
+ /**
812
+ * Asynchronous fchmod(2) - Change permissions of a file.
813
+ * @param fd A file descriptor.
814
+ * @param mode A file mode. If a string is passed, it is parsed as an octal integer.
815
+ */
816
+ function __promisify__(fd: number, mode: Mode): Promise<void>;
817
+ }
818
+ /**
819
+ * Sets the permissions on the file. Returns `undefined`.
820
+ *
821
+ * See the POSIX [`fchmod(2)`](http://man7.org/linux/man-pages/man2/fchmod.2.html) documentation for more detail.
822
+ * @since v0.4.7
823
+ */
824
+ export function fchmodSync(fd: number, mode: Mode): void;
825
+ /**
826
+ * Changes the permissions on a symbolic link. No arguments other than a possible
827
+ * exception are given to the completion callback.
828
+ *
829
+ * This method is only implemented on macOS.
830
+ *
831
+ * See the POSIX [`lchmod(2)`](https://www.freebsd.org/cgi/man.cgi?query=lchmod&sektion=2) documentation for more detail.
832
+ * @deprecated Since v0.4.7
833
+ */
834
+ export function lchmod(path: PathLike, mode: Mode, callback: NoParamCallback): void;
835
+ /** @deprecated */
836
+ export namespace lchmod {
837
+ /**
838
+ * Asynchronous lchmod(2) - Change permissions of a file. Does not dereference symbolic links.
839
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
840
+ * @param mode A file mode. If a string is passed, it is parsed as an octal integer.
841
+ */
842
+ function __promisify__(path: PathLike, mode: Mode): Promise<void>;
843
+ }
844
+ /**
845
+ * Changes the permissions on a symbolic link. Returns `undefined`.
846
+ *
847
+ * This method is only implemented on macOS.
848
+ *
849
+ * See the POSIX [`lchmod(2)`](https://www.freebsd.org/cgi/man.cgi?query=lchmod&sektion=2) documentation for more detail.
850
+ * @deprecated Since v0.4.7
851
+ */
852
+ export function lchmodSync(path: PathLike, mode: Mode): void;
853
+ /**
854
+ * Asynchronous [`stat(2)`](http://man7.org/linux/man-pages/man2/stat.2.html). The callback gets two arguments `(err, stats)` where`stats` is an `fs.Stats` object.
855
+ *
856
+ * In case of an error, the `err.code` will be one of `Common System Errors`.
857
+ *
858
+ * {@link stat} follows symbolic links. Use {@link lstat} to look at the
859
+ * links themselves.
860
+ *
861
+ * Using `fs.stat()` to check for the existence of a file before calling`fs.open()`, `fs.readFile()`, or `fs.writeFile()` is not recommended.
862
+ * Instead, user code should open/read/write the file directly and handle the
863
+ * error raised if the file is not available.
864
+ *
865
+ * To check if a file exists without manipulating it afterwards, {@link access} is recommended.
866
+ *
867
+ * For example, given the following directory structure:
868
+ *
869
+ * ```text
870
+ * - txtDir
871
+ * -- file.txt
872
+ * - app.js
873
+ * ```
874
+ *
875
+ * The next program will check for the stats of the given paths:
876
+ *
877
+ * ```js
878
+ * import { stat } from 'node:fs';
879
+ *
880
+ * const pathsToCheck = ['./txtDir', './txtDir/file.txt'];
881
+ *
882
+ * for (let i = 0; i < pathsToCheck.length; i++) {
883
+ * stat(pathsToCheck[i], (err, stats) => {
884
+ * console.log(stats.isDirectory());
885
+ * console.log(stats);
886
+ * });
887
+ * }
888
+ * ```
889
+ *
890
+ * The resulting output will resemble:
891
+ *
892
+ * ```console
893
+ * true
894
+ * Stats {
895
+ * dev: 16777220,
896
+ * mode: 16877,
897
+ * nlink: 3,
898
+ * uid: 501,
899
+ * gid: 20,
900
+ * rdev: 0,
901
+ * blksize: 4096,
902
+ * ino: 14214262,
903
+ * size: 96,
904
+ * blocks: 0,
905
+ * atimeMs: 1561174653071.963,
906
+ * mtimeMs: 1561174614583.3518,
907
+ * ctimeMs: 1561174626623.5366,
908
+ * birthtimeMs: 1561174126937.2893,
909
+ * atime: 2019-06-22T03:37:33.072Z,
910
+ * mtime: 2019-06-22T03:36:54.583Z,
911
+ * ctime: 2019-06-22T03:37:06.624Z,
912
+ * birthtime: 2019-06-22T03:28:46.937Z
913
+ * }
914
+ * false
915
+ * Stats {
916
+ * dev: 16777220,
917
+ * mode: 33188,
918
+ * nlink: 1,
919
+ * uid: 501,
920
+ * gid: 20,
921
+ * rdev: 0,
922
+ * blksize: 4096,
923
+ * ino: 14214074,
924
+ * size: 8,
925
+ * blocks: 8,
926
+ * atimeMs: 1561174616618.8555,
927
+ * mtimeMs: 1561174614584,
928
+ * ctimeMs: 1561174614583.8145,
929
+ * birthtimeMs: 1561174007710.7478,
930
+ * atime: 2019-06-22T03:36:56.619Z,
931
+ * mtime: 2019-06-22T03:36:54.584Z,
932
+ * ctime: 2019-06-22T03:36:54.584Z,
933
+ * birthtime: 2019-06-22T03:26:47.711Z
934
+ * }
935
+ * ```
936
+ * @since v0.0.2
937
+ */
938
+ export function stat(path: PathLike, callback: (err: NodeJS.ErrnoException | null, stats: Stats) => void): void;
939
+ export function stat(
940
+ path: PathLike,
941
+ options:
942
+ | (StatOptions & {
943
+ bigint?: false | undefined;
944
+ })
945
+ | undefined,
946
+ callback: (err: NodeJS.ErrnoException | null, stats: Stats) => void,
947
+ ): void;
948
+ export function stat(
949
+ path: PathLike,
950
+ options: StatOptions & {
951
+ bigint: true;
952
+ },
953
+ callback: (err: NodeJS.ErrnoException | null, stats: BigIntStats) => void,
954
+ ): void;
955
+ export function stat(
956
+ path: PathLike,
957
+ options: StatOptions | undefined,
958
+ callback: (err: NodeJS.ErrnoException | null, stats: Stats | BigIntStats) => void,
959
+ ): void;
960
+ export namespace stat {
961
+ /**
962
+ * Asynchronous stat(2) - Get file status.
963
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
964
+ */
965
+ function __promisify__(
966
+ path: PathLike,
967
+ options?: StatOptions & {
968
+ bigint?: false | undefined;
969
+ },
970
+ ): Promise<Stats>;
971
+ function __promisify__(
972
+ path: PathLike,
973
+ options: StatOptions & {
974
+ bigint: true;
975
+ },
976
+ ): Promise<BigIntStats>;
977
+ function __promisify__(path: PathLike, options?: StatOptions): Promise<Stats | BigIntStats>;
978
+ }
979
+ export interface StatSyncFn extends Function {
980
+ (path: PathLike, options?: undefined): Stats;
981
+ (
982
+ path: PathLike,
983
+ options?: StatSyncOptions & {
984
+ bigint?: false | undefined;
985
+ throwIfNoEntry: false;
986
+ },
987
+ ): Stats | undefined;
988
+ (
989
+ path: PathLike,
990
+ options: StatSyncOptions & {
991
+ bigint: true;
992
+ throwIfNoEntry: false;
993
+ },
994
+ ): BigIntStats | undefined;
995
+ (
996
+ path: PathLike,
997
+ options?: StatSyncOptions & {
998
+ bigint?: false | undefined;
999
+ },
1000
+ ): Stats;
1001
+ (
1002
+ path: PathLike,
1003
+ options: StatSyncOptions & {
1004
+ bigint: true;
1005
+ },
1006
+ ): BigIntStats;
1007
+ (
1008
+ path: PathLike,
1009
+ options: StatSyncOptions & {
1010
+ bigint: boolean;
1011
+ throwIfNoEntry?: false | undefined;
1012
+ },
1013
+ ): Stats | BigIntStats;
1014
+ (path: PathLike, options?: StatSyncOptions): Stats | BigIntStats | undefined;
1015
+ }
1016
+ /**
1017
+ * Synchronous stat(2) - Get file status.
1018
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1019
+ */
1020
+ export const statSync: StatSyncFn;
1021
+ /**
1022
+ * Invokes the callback with the `fs.Stats` for the file descriptor.
1023
+ *
1024
+ * See the POSIX [`fstat(2)`](http://man7.org/linux/man-pages/man2/fstat.2.html) documentation for more detail.
1025
+ * @since v0.1.95
1026
+ */
1027
+ export function fstat(fd: number, callback: (err: NodeJS.ErrnoException | null, stats: Stats) => void): void;
1028
+ export function fstat(
1029
+ fd: number,
1030
+ options:
1031
+ | (StatOptions & {
1032
+ bigint?: false | undefined;
1033
+ })
1034
+ | undefined,
1035
+ callback: (err: NodeJS.ErrnoException | null, stats: Stats) => void,
1036
+ ): void;
1037
+ export function fstat(
1038
+ fd: number,
1039
+ options: StatOptions & {
1040
+ bigint: true;
1041
+ },
1042
+ callback: (err: NodeJS.ErrnoException | null, stats: BigIntStats) => void,
1043
+ ): void;
1044
+ export function fstat(
1045
+ fd: number,
1046
+ options: StatOptions | undefined,
1047
+ callback: (err: NodeJS.ErrnoException | null, stats: Stats | BigIntStats) => void,
1048
+ ): void;
1049
+ export namespace fstat {
1050
+ /**
1051
+ * Asynchronous fstat(2) - Get file status.
1052
+ * @param fd A file descriptor.
1053
+ */
1054
+ function __promisify__(
1055
+ fd: number,
1056
+ options?: StatOptions & {
1057
+ bigint?: false | undefined;
1058
+ },
1059
+ ): Promise<Stats>;
1060
+ function __promisify__(
1061
+ fd: number,
1062
+ options: StatOptions & {
1063
+ bigint: true;
1064
+ },
1065
+ ): Promise<BigIntStats>;
1066
+ function __promisify__(fd: number, options?: StatOptions): Promise<Stats | BigIntStats>;
1067
+ }
1068
+ /**
1069
+ * Retrieves the `fs.Stats` for the file descriptor.
1070
+ *
1071
+ * See the POSIX [`fstat(2)`](http://man7.org/linux/man-pages/man2/fstat.2.html) documentation for more detail.
1072
+ * @since v0.1.95
1073
+ */
1074
+ export function fstatSync(
1075
+ fd: number,
1076
+ options?: StatOptions & {
1077
+ bigint?: false | undefined;
1078
+ },
1079
+ ): Stats;
1080
+ export function fstatSync(
1081
+ fd: number,
1082
+ options: StatOptions & {
1083
+ bigint: true;
1084
+ },
1085
+ ): BigIntStats;
1086
+ export function fstatSync(fd: number, options?: StatOptions): Stats | BigIntStats;
1087
+ /**
1088
+ * Retrieves the `fs.Stats` for the symbolic link referred to by the path.
1089
+ * The callback gets two arguments `(err, stats)` where `stats` is a `fs.Stats` object. `lstat()` is identical to `stat()`, except that if `path` is a symbolic
1090
+ * link, then the link itself is stat-ed, not the file that it refers to.
1091
+ *
1092
+ * See the POSIX [`lstat(2)`](http://man7.org/linux/man-pages/man2/lstat.2.html) documentation for more details.
1093
+ * @since v0.1.30
1094
+ */
1095
+ export function lstat(path: PathLike, callback: (err: NodeJS.ErrnoException | null, stats: Stats) => void): void;
1096
+ export function lstat(
1097
+ path: PathLike,
1098
+ options:
1099
+ | (StatOptions & {
1100
+ bigint?: false | undefined;
1101
+ })
1102
+ | undefined,
1103
+ callback: (err: NodeJS.ErrnoException | null, stats: Stats) => void,
1104
+ ): void;
1105
+ export function lstat(
1106
+ path: PathLike,
1107
+ options: StatOptions & {
1108
+ bigint: true;
1109
+ },
1110
+ callback: (err: NodeJS.ErrnoException | null, stats: BigIntStats) => void,
1111
+ ): void;
1112
+ export function lstat(
1113
+ path: PathLike,
1114
+ options: StatOptions | undefined,
1115
+ callback: (err: NodeJS.ErrnoException | null, stats: Stats | BigIntStats) => void,
1116
+ ): void;
1117
+ export namespace lstat {
1118
+ /**
1119
+ * Asynchronous lstat(2) - Get file status. Does not dereference symbolic links.
1120
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1121
+ */
1122
+ function __promisify__(
1123
+ path: PathLike,
1124
+ options?: StatOptions & {
1125
+ bigint?: false | undefined;
1126
+ },
1127
+ ): Promise<Stats>;
1128
+ function __promisify__(
1129
+ path: PathLike,
1130
+ options: StatOptions & {
1131
+ bigint: true;
1132
+ },
1133
+ ): Promise<BigIntStats>;
1134
+ function __promisify__(path: PathLike, options?: StatOptions): Promise<Stats | BigIntStats>;
1135
+ }
1136
+ /**
1137
+ * Asynchronous [`statfs(2)`](http://man7.org/linux/man-pages/man2/statfs.2.html). Returns information about the mounted file system which
1138
+ * contains `path`. The callback gets two arguments `(err, stats)` where `stats`is an `fs.StatFs` object.
1139
+ *
1140
+ * In case of an error, the `err.code` will be one of `Common System Errors`.
1141
+ * @since v19.6.0, v18.15.0
1142
+ * @param path A path to an existing file or directory on the file system to be queried.
1143
+ */
1144
+ export function statfs(path: PathLike, callback: (err: NodeJS.ErrnoException | null, stats: StatsFs) => void): void;
1145
+ export function statfs(
1146
+ path: PathLike,
1147
+ options:
1148
+ | (StatFsOptions & {
1149
+ bigint?: false | undefined;
1150
+ })
1151
+ | undefined,
1152
+ callback: (err: NodeJS.ErrnoException | null, stats: StatsFs) => void,
1153
+ ): void;
1154
+ export function statfs(
1155
+ path: PathLike,
1156
+ options: StatFsOptions & {
1157
+ bigint: true;
1158
+ },
1159
+ callback: (err: NodeJS.ErrnoException | null, stats: BigIntStatsFs) => void,
1160
+ ): void;
1161
+ export function statfs(
1162
+ path: PathLike,
1163
+ options: StatFsOptions | undefined,
1164
+ callback: (err: NodeJS.ErrnoException | null, stats: StatsFs | BigIntStatsFs) => void,
1165
+ ): void;
1166
+ export namespace statfs {
1167
+ /**
1168
+ * Asynchronous statfs(2) - Returns information about the mounted file system which contains path. The callback gets two arguments (err, stats) where stats is an <fs.StatFs> object.
1169
+ * @param path A path to an existing file or directory on the file system to be queried.
1170
+ */
1171
+ function __promisify__(
1172
+ path: PathLike,
1173
+ options?: StatFsOptions & {
1174
+ bigint?: false | undefined;
1175
+ },
1176
+ ): Promise<StatsFs>;
1177
+ function __promisify__(
1178
+ path: PathLike,
1179
+ options: StatFsOptions & {
1180
+ bigint: true;
1181
+ },
1182
+ ): Promise<BigIntStatsFs>;
1183
+ function __promisify__(path: PathLike, options?: StatFsOptions): Promise<StatsFs | BigIntStatsFs>;
1184
+ }
1185
+ /**
1186
+ * Synchronous [`statfs(2)`](http://man7.org/linux/man-pages/man2/statfs.2.html). Returns information about the mounted file system which
1187
+ * contains `path`.
1188
+ *
1189
+ * In case of an error, the `err.code` will be one of `Common System Errors`.
1190
+ * @since v19.6.0, v18.15.0
1191
+ * @param path A path to an existing file or directory on the file system to be queried.
1192
+ */
1193
+ export function statfsSync(
1194
+ path: PathLike,
1195
+ options?: StatFsOptions & {
1196
+ bigint?: false | undefined;
1197
+ },
1198
+ ): StatsFs;
1199
+ export function statfsSync(
1200
+ path: PathLike,
1201
+ options: StatFsOptions & {
1202
+ bigint: true;
1203
+ },
1204
+ ): BigIntStatsFs;
1205
+ export function statfsSync(path: PathLike, options?: StatFsOptions): StatsFs | BigIntStatsFs;
1206
+ /**
1207
+ * Synchronous lstat(2) - Get file status. Does not dereference symbolic links.
1208
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1209
+ */
1210
+ export const lstatSync: StatSyncFn;
1211
+ /**
1212
+ * Creates a new link from the `existingPath` to the `newPath`. See the POSIX [`link(2)`](http://man7.org/linux/man-pages/man2/link.2.html) documentation for more detail. No arguments other than
1213
+ * a possible
1214
+ * exception are given to the completion callback.
1215
+ * @since v0.1.31
1216
+ */
1217
+ export function link(existingPath: PathLike, newPath: PathLike, callback: NoParamCallback): void;
1218
+ export namespace link {
1219
+ /**
1220
+ * Asynchronous link(2) - Create a new link (also known as a hard link) to an existing file.
1221
+ * @param existingPath A path to a file. If a URL is provided, it must use the `file:` protocol.
1222
+ * @param newPath A path to a file. If a URL is provided, it must use the `file:` protocol.
1223
+ */
1224
+ function __promisify__(existingPath: PathLike, newPath: PathLike): Promise<void>;
1225
+ }
1226
+ /**
1227
+ * Creates a new link from the `existingPath` to the `newPath`. See the POSIX [`link(2)`](http://man7.org/linux/man-pages/man2/link.2.html) documentation for more detail. Returns `undefined`.
1228
+ * @since v0.1.31
1229
+ */
1230
+ export function linkSync(existingPath: PathLike, newPath: PathLike): void;
1231
+ /**
1232
+ * Creates the link called `path` pointing to `target`. No arguments other than a
1233
+ * possible exception are given to the completion callback.
1234
+ *
1235
+ * See the POSIX [`symlink(2)`](http://man7.org/linux/man-pages/man2/symlink.2.html) documentation for more details.
1236
+ *
1237
+ * The `type` argument is only available on Windows and ignored on other platforms.
1238
+ * It can be set to `'dir'`, `'file'`, or `'junction'`. If the `type` argument is
1239
+ * not a string, Node.js will autodetect `target` type and use `'file'` or `'dir'`.
1240
+ * If the `target` does not exist, `'file'` will be used. Windows junction points
1241
+ * require the destination path to be absolute. When using `'junction'`, the`target` argument will automatically be normalized to absolute path. Junction
1242
+ * points on NTFS volumes can only point to directories.
1243
+ *
1244
+ * Relative targets are relative to the link's parent directory.
1245
+ *
1246
+ * ```js
1247
+ * import { symlink } from 'node:fs';
1248
+ *
1249
+ * symlink('./mew', './mewtwo', callback);
1250
+ * ```
1251
+ *
1252
+ * The above example creates a symbolic link `mewtwo` which points to `mew` in the
1253
+ * same directory:
1254
+ *
1255
+ * ```bash
1256
+ * $ tree .
1257
+ * .
1258
+ * ├── mew
1259
+ * └── mewtwo -> ./mew
1260
+ * ```
1261
+ * @since v0.1.31
1262
+ * @param [type='null']
1263
+ */
1264
+ export function symlink(
1265
+ target: PathLike,
1266
+ path: PathLike,
1267
+ type: symlink.Type | undefined | null,
1268
+ callback: NoParamCallback,
1269
+ ): void;
1270
+ /**
1271
+ * Asynchronous symlink(2) - Create a new symbolic link to an existing file.
1272
+ * @param target A path to an existing file. If a URL is provided, it must use the `file:` protocol.
1273
+ * @param path A path to the new symlink. If a URL is provided, it must use the `file:` protocol.
1274
+ */
1275
+ export function symlink(target: PathLike, path: PathLike, callback: NoParamCallback): void;
1276
+ export namespace symlink {
1277
+ /**
1278
+ * Asynchronous symlink(2) - Create a new symbolic link to an existing file.
1279
+ * @param target A path to an existing file. If a URL is provided, it must use the `file:` protocol.
1280
+ * @param path A path to the new symlink. If a URL is provided, it must use the `file:` protocol.
1281
+ * @param type May be set to `'dir'`, `'file'`, or `'junction'` (default is `'file'`) and is only available on Windows (ignored on other platforms).
1282
+ * When using `'junction'`, the `target` argument will automatically be normalized to an absolute path.
1283
+ */
1284
+ function __promisify__(target: PathLike, path: PathLike, type?: string | null): Promise<void>;
1285
+ type Type = "dir" | "file" | "junction";
1286
+ }
1287
+ /**
1288
+ * Returns `undefined`.
1289
+ *
1290
+ * For detailed information, see the documentation of the asynchronous version of
1291
+ * this API: {@link symlink}.
1292
+ * @since v0.1.31
1293
+ * @param [type='null']
1294
+ */
1295
+ export function symlinkSync(target: PathLike, path: PathLike, type?: symlink.Type | null): void;
1296
+ /**
1297
+ * Reads the contents of the symbolic link referred to by `path`. The callback gets
1298
+ * two arguments `(err, linkString)`.
1299
+ *
1300
+ * See the POSIX [`readlink(2)`](http://man7.org/linux/man-pages/man2/readlink.2.html) documentation for more details.
1301
+ *
1302
+ * The optional `options` argument can be a string specifying an encoding, or an
1303
+ * object with an `encoding` property specifying the character encoding to use for
1304
+ * the link path passed to the callback. If the `encoding` is set to `'buffer'`,
1305
+ * the link path returned will be passed as a `Buffer` object.
1306
+ * @since v0.1.31
1307
+ */
1308
+ export function readlink(
1309
+ path: PathLike,
1310
+ options: EncodingOption,
1311
+ callback: (err: NodeJS.ErrnoException | null, linkString: string) => void,
1312
+ ): void;
1313
+ /**
1314
+ * Asynchronous readlink(2) - read value of a symbolic link.
1315
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1316
+ * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1317
+ */
1318
+ export function readlink(
1319
+ path: PathLike,
1320
+ options: BufferEncodingOption,
1321
+ callback: (err: NodeJS.ErrnoException | null, linkString: Buffer) => void,
1322
+ ): void;
1323
+ /**
1324
+ * Asynchronous readlink(2) - read value of a symbolic link.
1325
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1326
+ * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1327
+ */
1328
+ export function readlink(
1329
+ path: PathLike,
1330
+ options: EncodingOption,
1331
+ callback: (err: NodeJS.ErrnoException | null, linkString: string | Buffer) => void,
1332
+ ): void;
1333
+ /**
1334
+ * Asynchronous readlink(2) - read value of a symbolic link.
1335
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1336
+ */
1337
+ export function readlink(
1338
+ path: PathLike,
1339
+ callback: (err: NodeJS.ErrnoException | null, linkString: string) => void,
1340
+ ): void;
1341
+ export namespace readlink {
1342
+ /**
1343
+ * Asynchronous readlink(2) - read value of a symbolic link.
1344
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1345
+ * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1346
+ */
1347
+ function __promisify__(path: PathLike, options?: EncodingOption): Promise<string>;
1348
+ /**
1349
+ * Asynchronous readlink(2) - read value of a symbolic link.
1350
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1351
+ * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1352
+ */
1353
+ function __promisify__(path: PathLike, options: BufferEncodingOption): Promise<Buffer>;
1354
+ /**
1355
+ * Asynchronous readlink(2) - read value of a symbolic link.
1356
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1357
+ * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1358
+ */
1359
+ function __promisify__(path: PathLike, options?: EncodingOption): Promise<string | Buffer>;
1360
+ }
1361
+ /**
1362
+ * Returns the symbolic link's string value.
1363
+ *
1364
+ * See the POSIX [`readlink(2)`](http://man7.org/linux/man-pages/man2/readlink.2.html) documentation for more details.
1365
+ *
1366
+ * The optional `options` argument can be a string specifying an encoding, or an
1367
+ * object with an `encoding` property specifying the character encoding to use for
1368
+ * the link path returned. If the `encoding` is set to `'buffer'`,
1369
+ * the link path returned will be passed as a `Buffer` object.
1370
+ * @since v0.1.31
1371
+ */
1372
+ export function readlinkSync(path: PathLike, options?: EncodingOption): string;
1373
+ /**
1374
+ * Synchronous readlink(2) - read value of a symbolic link.
1375
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1376
+ * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1377
+ */
1378
+ export function readlinkSync(path: PathLike, options: BufferEncodingOption): Buffer;
1379
+ /**
1380
+ * Synchronous readlink(2) - read value of a symbolic link.
1381
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1382
+ * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1383
+ */
1384
+ export function readlinkSync(path: PathLike, options?: EncodingOption): string | Buffer;
1385
+ /**
1386
+ * Asynchronously computes the canonical pathname by resolving `.`, `..`, and
1387
+ * symbolic links.
1388
+ *
1389
+ * A canonical pathname is not necessarily unique. Hard links and bind mounts can
1390
+ * expose a file system entity through many pathnames.
1391
+ *
1392
+ * This function behaves like [`realpath(3)`](http://man7.org/linux/man-pages/man3/realpath.3.html), with some exceptions:
1393
+ *
1394
+ * 1. No case conversion is performed on case-insensitive file systems.
1395
+ * 2. The maximum number of symbolic links is platform-independent and generally
1396
+ * (much) higher than what the native [`realpath(3)`](http://man7.org/linux/man-pages/man3/realpath.3.html) implementation supports.
1397
+ *
1398
+ * The `callback` gets two arguments `(err, resolvedPath)`. May use `process.cwd` to resolve relative paths.
1399
+ *
1400
+ * Only paths that can be converted to UTF8 strings are supported.
1401
+ *
1402
+ * The optional `options` argument can be a string specifying an encoding, or an
1403
+ * object with an `encoding` property specifying the character encoding to use for
1404
+ * the path passed to the callback. If the `encoding` is set to `'buffer'`,
1405
+ * the path returned will be passed as a `Buffer` object.
1406
+ *
1407
+ * If `path` resolves to a socket or a pipe, the function will return a system
1408
+ * dependent name for that object.
1409
+ * @since v0.1.31
1410
+ */
1411
+ export function realpath(
1412
+ path: PathLike,
1413
+ options: EncodingOption,
1414
+ callback: (err: NodeJS.ErrnoException | null, resolvedPath: string) => void,
1415
+ ): void;
1416
+ /**
1417
+ * Asynchronous realpath(3) - return the canonicalized absolute pathname.
1418
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1419
+ * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1420
+ */
1421
+ export function realpath(
1422
+ path: PathLike,
1423
+ options: BufferEncodingOption,
1424
+ callback: (err: NodeJS.ErrnoException | null, resolvedPath: Buffer) => void,
1425
+ ): void;
1426
+ /**
1427
+ * Asynchronous realpath(3) - return the canonicalized absolute pathname.
1428
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1429
+ * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1430
+ */
1431
+ export function realpath(
1432
+ path: PathLike,
1433
+ options: EncodingOption,
1434
+ callback: (err: NodeJS.ErrnoException | null, resolvedPath: string | Buffer) => void,
1435
+ ): void;
1436
+ /**
1437
+ * Asynchronous realpath(3) - return the canonicalized absolute pathname.
1438
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1439
+ */
1440
+ export function realpath(
1441
+ path: PathLike,
1442
+ callback: (err: NodeJS.ErrnoException | null, resolvedPath: string) => void,
1443
+ ): void;
1444
+ export namespace realpath {
1445
+ /**
1446
+ * Asynchronous realpath(3) - return the canonicalized absolute pathname.
1447
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1448
+ * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1449
+ */
1450
+ function __promisify__(path: PathLike, options?: EncodingOption): Promise<string>;
1451
+ /**
1452
+ * Asynchronous realpath(3) - return the canonicalized absolute pathname.
1453
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1454
+ * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1455
+ */
1456
+ function __promisify__(path: PathLike, options: BufferEncodingOption): Promise<Buffer>;
1457
+ /**
1458
+ * Asynchronous realpath(3) - return the canonicalized absolute pathname.
1459
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1460
+ * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1461
+ */
1462
+ function __promisify__(path: PathLike, options?: EncodingOption): Promise<string | Buffer>;
1463
+ /**
1464
+ * Asynchronous [`realpath(3)`](http://man7.org/linux/man-pages/man3/realpath.3.html).
1465
+ *
1466
+ * The `callback` gets two arguments `(err, resolvedPath)`.
1467
+ *
1468
+ * Only paths that can be converted to UTF8 strings are supported.
1469
+ *
1470
+ * The optional `options` argument can be a string specifying an encoding, or an
1471
+ * object with an `encoding` property specifying the character encoding to use for
1472
+ * the path passed to the callback. If the `encoding` is set to `'buffer'`,
1473
+ * the path returned will be passed as a `Buffer` object.
1474
+ *
1475
+ * On Linux, when Node.js is linked against musl libc, the procfs file system must
1476
+ * be mounted on `/proc` in order for this function to work. Glibc does not have
1477
+ * this restriction.
1478
+ * @since v9.2.0
1479
+ */
1480
+ function native(
1481
+ path: PathLike,
1482
+ options: EncodingOption,
1483
+ callback: (err: NodeJS.ErrnoException | null, resolvedPath: string) => void,
1484
+ ): void;
1485
+ function native(
1486
+ path: PathLike,
1487
+ options: BufferEncodingOption,
1488
+ callback: (err: NodeJS.ErrnoException | null, resolvedPath: Buffer) => void,
1489
+ ): void;
1490
+ function native(
1491
+ path: PathLike,
1492
+ options: EncodingOption,
1493
+ callback: (err: NodeJS.ErrnoException | null, resolvedPath: string | Buffer) => void,
1494
+ ): void;
1495
+ function native(
1496
+ path: PathLike,
1497
+ callback: (err: NodeJS.ErrnoException | null, resolvedPath: string) => void,
1498
+ ): void;
1499
+ }
1500
+ /**
1501
+ * Returns the resolved pathname.
1502
+ *
1503
+ * For detailed information, see the documentation of the asynchronous version of
1504
+ * this API: {@link realpath}.
1505
+ * @since v0.1.31
1506
+ */
1507
+ export function realpathSync(path: PathLike, options?: EncodingOption): string;
1508
+ /**
1509
+ * Synchronous realpath(3) - return the canonicalized absolute pathname.
1510
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1511
+ * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1512
+ */
1513
+ export function realpathSync(path: PathLike, options: BufferEncodingOption): Buffer;
1514
+ /**
1515
+ * Synchronous realpath(3) - return the canonicalized absolute pathname.
1516
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1517
+ * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1518
+ */
1519
+ export function realpathSync(path: PathLike, options?: EncodingOption): string | Buffer;
1520
+ export namespace realpathSync {
1521
+ function native(path: PathLike, options?: EncodingOption): string;
1522
+ function native(path: PathLike, options: BufferEncodingOption): Buffer;
1523
+ function native(path: PathLike, options?: EncodingOption): string | Buffer;
1524
+ }
1525
+ /**
1526
+ * Asynchronously removes a file or symbolic link. No arguments other than a
1527
+ * possible exception are given to the completion callback.
1528
+ *
1529
+ * ```js
1530
+ * import { unlink } from 'node:fs';
1531
+ * // Assuming that 'path/file.txt' is a regular file.
1532
+ * unlink('path/file.txt', (err) => {
1533
+ * if (err) throw err;
1534
+ * console.log('path/file.txt was deleted');
1535
+ * });
1536
+ * ```
1537
+ *
1538
+ * `fs.unlink()` will not work on a directory, empty or otherwise. To remove a
1539
+ * directory, use {@link rmdir}.
1540
+ *
1541
+ * See the POSIX [`unlink(2)`](http://man7.org/linux/man-pages/man2/unlink.2.html) documentation for more details.
1542
+ * @since v0.0.2
1543
+ */
1544
+ export function unlink(path: PathLike, callback: NoParamCallback): void;
1545
+ export namespace unlink {
1546
+ /**
1547
+ * Asynchronous unlink(2) - delete a name and possibly the file it refers to.
1548
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1549
+ */
1550
+ function __promisify__(path: PathLike): Promise<void>;
1551
+ }
1552
+ /**
1553
+ * Synchronous [`unlink(2)`](http://man7.org/linux/man-pages/man2/unlink.2.html). Returns `undefined`.
1554
+ * @since v0.1.21
1555
+ */
1556
+ export function unlinkSync(path: PathLike): void;
1557
+ export interface RmDirOptions {
1558
+ /**
1559
+ * If an `EBUSY`, `EMFILE`, `ENFILE`, `ENOTEMPTY`, or
1560
+ * `EPERM` error is encountered, Node.js will retry the operation with a linear
1561
+ * backoff wait of `retryDelay` ms longer on each try. This option represents the
1562
+ * number of retries. This option is ignored if the `recursive` option is not
1563
+ * `true`.
1564
+ * @default 0
1565
+ */
1566
+ maxRetries?: number | undefined;
1567
+ /**
1568
+ * @deprecated since v14.14.0 In future versions of Node.js and will trigger a warning
1569
+ * `fs.rmdir(path, { recursive: true })` will throw if `path` does not exist or is a file.
1570
+ * Use `fs.rm(path, { recursive: true, force: true })` instead.
1571
+ *
1572
+ * If `true`, perform a recursive directory removal. In
1573
+ * recursive mode, operations are retried on failure.
1574
+ * @default false
1575
+ */
1576
+ recursive?: boolean | undefined;
1577
+ /**
1578
+ * The amount of time in milliseconds to wait between retries.
1579
+ * This option is ignored if the `recursive` option is not `true`.
1580
+ * @default 100
1581
+ */
1582
+ retryDelay?: number | undefined;
1583
+ }
1584
+ /**
1585
+ * Asynchronous [`rmdir(2)`](http://man7.org/linux/man-pages/man2/rmdir.2.html). No arguments other than a possible exception are given
1586
+ * to the completion callback.
1587
+ *
1588
+ * Using `fs.rmdir()` on a file (not a directory) results in an `ENOENT` error on
1589
+ * Windows and an `ENOTDIR` error on POSIX.
1590
+ *
1591
+ * To get a behavior similar to the `rm -rf` Unix command, use {@link rm} with options `{ recursive: true, force: true }`.
1592
+ * @since v0.0.2
1593
+ */
1594
+ export function rmdir(path: PathLike, callback: NoParamCallback): void;
1595
+ export function rmdir(path: PathLike, options: RmDirOptions, callback: NoParamCallback): void;
1596
+ export namespace rmdir {
1597
+ /**
1598
+ * Asynchronous rmdir(2) - delete a directory.
1599
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1600
+ */
1601
+ function __promisify__(path: PathLike, options?: RmDirOptions): Promise<void>;
1602
+ }
1603
+ /**
1604
+ * Synchronous [`rmdir(2)`](http://man7.org/linux/man-pages/man2/rmdir.2.html). Returns `undefined`.
1605
+ *
1606
+ * Using `fs.rmdirSync()` on a file (not a directory) results in an `ENOENT` error
1607
+ * on Windows and an `ENOTDIR` error on POSIX.
1608
+ *
1609
+ * To get a behavior similar to the `rm -rf` Unix command, use {@link rmSync} with options `{ recursive: true, force: true }`.
1610
+ * @since v0.1.21
1611
+ */
1612
+ export function rmdirSync(path: PathLike, options?: RmDirOptions): void;
1613
+ export interface RmOptions {
1614
+ /**
1615
+ * When `true`, exceptions will be ignored if `path` does not exist.
1616
+ * @default false
1617
+ */
1618
+ force?: boolean | undefined;
1619
+ /**
1620
+ * If an `EBUSY`, `EMFILE`, `ENFILE`, `ENOTEMPTY`, or
1621
+ * `EPERM` error is encountered, Node.js will retry the operation with a linear
1622
+ * backoff wait of `retryDelay` ms longer on each try. This option represents the
1623
+ * number of retries. This option is ignored if the `recursive` option is not
1624
+ * `true`.
1625
+ * @default 0
1626
+ */
1627
+ maxRetries?: number | undefined;
1628
+ /**
1629
+ * If `true`, perform a recursive directory removal. In
1630
+ * recursive mode, operations are retried on failure.
1631
+ * @default false
1632
+ */
1633
+ recursive?: boolean | undefined;
1634
+ /**
1635
+ * The amount of time in milliseconds to wait between retries.
1636
+ * This option is ignored if the `recursive` option is not `true`.
1637
+ * @default 100
1638
+ */
1639
+ retryDelay?: number | undefined;
1640
+ }
1641
+ /**
1642
+ * Asynchronously removes files and directories (modeled on the standard POSIX `rm` utility). No arguments other than a possible exception are given to the
1643
+ * completion callback.
1644
+ * @since v14.14.0
1645
+ */
1646
+ export function rm(path: PathLike, callback: NoParamCallback): void;
1647
+ export function rm(path: PathLike, options: RmOptions, callback: NoParamCallback): void;
1648
+ export namespace rm {
1649
+ /**
1650
+ * Asynchronously removes files and directories (modeled on the standard POSIX `rm` utility).
1651
+ */
1652
+ function __promisify__(path: PathLike, options?: RmOptions): Promise<void>;
1653
+ }
1654
+ /**
1655
+ * Synchronously removes files and directories (modeled on the standard POSIX `rm` utility). Returns `undefined`.
1656
+ * @since v14.14.0
1657
+ */
1658
+ export function rmSync(path: PathLike, options?: RmOptions): void;
1659
+ export interface MakeDirectoryOptions {
1660
+ /**
1661
+ * Indicates whether parent folders should be created.
1662
+ * If a folder was created, the path to the first created folder will be returned.
1663
+ * @default false
1664
+ */
1665
+ recursive?: boolean | undefined;
1666
+ /**
1667
+ * A file mode. If a string is passed, it is parsed as an octal integer. If not specified
1668
+ * @default 0o777
1669
+ */
1670
+ mode?: Mode | undefined;
1671
+ }
1672
+ /**
1673
+ * Asynchronously creates a directory.
1674
+ *
1675
+ * The callback is given a possible exception and, if `recursive` is `true`, the
1676
+ * first directory path created, `(err[, path])`.`path` can still be `undefined` when `recursive` is `true`, if no directory was
1677
+ * created (for instance, if it was previously created).
1678
+ *
1679
+ * The optional `options` argument can be an integer specifying `mode` (permission
1680
+ * and sticky bits), or an object with a `mode` property and a `recursive` property indicating whether parent directories should be created. Calling `fs.mkdir()` when `path` is a directory that
1681
+ * exists results in an error only
1682
+ * when `recursive` is false. If `recursive` is false and the directory exists,
1683
+ * an `EEXIST` error occurs.
1684
+ *
1685
+ * ```js
1686
+ * import { mkdir } from 'node:fs';
1687
+ *
1688
+ * // Create ./tmp/a/apple, regardless of whether ./tmp and ./tmp/a exist.
1689
+ * mkdir('./tmp/a/apple', { recursive: true }, (err) => {
1690
+ * if (err) throw err;
1691
+ * });
1692
+ * ```
1693
+ *
1694
+ * On Windows, using `fs.mkdir()` on the root directory even with recursion will
1695
+ * result in an error:
1696
+ *
1697
+ * ```js
1698
+ * import { mkdir } from 'node:fs';
1699
+ *
1700
+ * mkdir('/', { recursive: true }, (err) => {
1701
+ * // => [Error: EPERM: operation not permitted, mkdir 'C:\']
1702
+ * });
1703
+ * ```
1704
+ *
1705
+ * See the POSIX [`mkdir(2)`](http://man7.org/linux/man-pages/man2/mkdir.2.html) documentation for more details.
1706
+ * @since v0.1.8
1707
+ */
1708
+ export function mkdir(
1709
+ path: PathLike,
1710
+ options: MakeDirectoryOptions & {
1711
+ recursive: true;
1712
+ },
1713
+ callback: (err: NodeJS.ErrnoException | null, path?: string) => void,
1714
+ ): void;
1715
+ /**
1716
+ * Asynchronous mkdir(2) - create a directory.
1717
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1718
+ * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders
1719
+ * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`.
1720
+ */
1721
+ export function mkdir(
1722
+ path: PathLike,
1723
+ options:
1724
+ | Mode
1725
+ | (MakeDirectoryOptions & {
1726
+ recursive?: false | undefined;
1727
+ })
1728
+ | null
1729
+ | undefined,
1730
+ callback: NoParamCallback,
1731
+ ): void;
1732
+ /**
1733
+ * Asynchronous mkdir(2) - create a directory.
1734
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1735
+ * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders
1736
+ * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`.
1737
+ */
1738
+ export function mkdir(
1739
+ path: PathLike,
1740
+ options: Mode | MakeDirectoryOptions | null | undefined,
1741
+ callback: (err: NodeJS.ErrnoException | null, path?: string) => void,
1742
+ ): void;
1743
+ /**
1744
+ * Asynchronous mkdir(2) - create a directory with a mode of `0o777`.
1745
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1746
+ */
1747
+ export function mkdir(path: PathLike, callback: NoParamCallback): void;
1748
+ export namespace mkdir {
1749
+ /**
1750
+ * Asynchronous mkdir(2) - create a directory.
1751
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1752
+ * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders
1753
+ * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`.
1754
+ */
1755
+ function __promisify__(
1756
+ path: PathLike,
1757
+ options: MakeDirectoryOptions & {
1758
+ recursive: true;
1759
+ },
1760
+ ): Promise<string | undefined>;
1761
+ /**
1762
+ * Asynchronous mkdir(2) - create a directory.
1763
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1764
+ * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders
1765
+ * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`.
1766
+ */
1767
+ function __promisify__(
1768
+ path: PathLike,
1769
+ options?:
1770
+ | Mode
1771
+ | (MakeDirectoryOptions & {
1772
+ recursive?: false | undefined;
1773
+ })
1774
+ | null,
1775
+ ): Promise<void>;
1776
+ /**
1777
+ * Asynchronous mkdir(2) - create a directory.
1778
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1779
+ * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders
1780
+ * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`.
1781
+ */
1782
+ function __promisify__(
1783
+ path: PathLike,
1784
+ options?: Mode | MakeDirectoryOptions | null,
1785
+ ): Promise<string | undefined>;
1786
+ }
1787
+ /**
1788
+ * Synchronously creates a directory. Returns `undefined`, or if `recursive` is `true`, the first directory path created.
1789
+ * This is the synchronous version of {@link mkdir}.
1790
+ *
1791
+ * See the POSIX [`mkdir(2)`](http://man7.org/linux/man-pages/man2/mkdir.2.html) documentation for more details.
1792
+ * @since v0.1.21
1793
+ */
1794
+ export function mkdirSync(
1795
+ path: PathLike,
1796
+ options: MakeDirectoryOptions & {
1797
+ recursive: true;
1798
+ },
1799
+ ): string | undefined;
1800
+ /**
1801
+ * Synchronous mkdir(2) - create a directory.
1802
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1803
+ * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders
1804
+ * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`.
1805
+ */
1806
+ export function mkdirSync(
1807
+ path: PathLike,
1808
+ options?:
1809
+ | Mode
1810
+ | (MakeDirectoryOptions & {
1811
+ recursive?: false | undefined;
1812
+ })
1813
+ | null,
1814
+ ): void;
1815
+ /**
1816
+ * Synchronous mkdir(2) - create a directory.
1817
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1818
+ * @param options Either the file mode, or an object optionally specifying the file mode and whether parent folders
1819
+ * should be created. If a string is passed, it is parsed as an octal integer. If not specified, defaults to `0o777`.
1820
+ */
1821
+ export function mkdirSync(path: PathLike, options?: Mode | MakeDirectoryOptions | null): string | undefined;
1822
+ /**
1823
+ * Creates a unique temporary directory.
1824
+ *
1825
+ * Generates six random characters to be appended behind a required `prefix` to create a unique temporary directory. Due to platform
1826
+ * inconsistencies, avoid trailing `X` characters in `prefix`. Some platforms,
1827
+ * notably the BSDs, can return more than six random characters, and replace
1828
+ * trailing `X` characters in `prefix` with random characters.
1829
+ *
1830
+ * The created directory path is passed as a string to the callback's second
1831
+ * parameter.
1832
+ *
1833
+ * The optional `options` argument can be a string specifying an encoding, or an
1834
+ * object with an `encoding` property specifying the character encoding to use.
1835
+ *
1836
+ * ```js
1837
+ * import { mkdtemp } from 'node:fs';
1838
+ * import { join } from 'node:path';
1839
+ * import { tmpdir } from 'node:os';
1840
+ *
1841
+ * mkdtemp(join(tmpdir(), 'foo-'), (err, directory) => {
1842
+ * if (err) throw err;
1843
+ * console.log(directory);
1844
+ * // Prints: /tmp/foo-itXde2 or C:\Users\...\AppData\Local\Temp\foo-itXde2
1845
+ * });
1846
+ * ```
1847
+ *
1848
+ * The `fs.mkdtemp()` method will append the six randomly selected characters
1849
+ * directly to the `prefix` string. For instance, given a directory `/tmp`, if the
1850
+ * intention is to create a temporary directory _within_`/tmp`, the `prefix`must end with a trailing platform-specific path separator
1851
+ * (`import { sep } from 'node:node:path'`).
1852
+ *
1853
+ * ```js
1854
+ * import { tmpdir } from 'node:os';
1855
+ * import { mkdtemp } from 'node:fs';
1856
+ *
1857
+ * // The parent directory for the new temporary directory
1858
+ * const tmpDir = tmpdir();
1859
+ *
1860
+ * // This method is *INCORRECT*:
1861
+ * mkdtemp(tmpDir, (err, directory) => {
1862
+ * if (err) throw err;
1863
+ * console.log(directory);
1864
+ * // Will print something similar to `/tmpabc123`.
1865
+ * // A new temporary directory is created at the file system root
1866
+ * // rather than *within* the /tmp directory.
1867
+ * });
1868
+ *
1869
+ * // This method is *CORRECT*:
1870
+ * import { sep } from 'node:path';
1871
+ * mkdtemp(`${tmpDir}${sep}`, (err, directory) => {
1872
+ * if (err) throw err;
1873
+ * console.log(directory);
1874
+ * // Will print something similar to `/tmp/abc123`.
1875
+ * // A new temporary directory is created within
1876
+ * // the /tmp directory.
1877
+ * });
1878
+ * ```
1879
+ * @since v5.10.0
1880
+ */
1881
+ export function mkdtemp(
1882
+ prefix: string,
1883
+ options: EncodingOption,
1884
+ callback: (err: NodeJS.ErrnoException | null, folder: string) => void,
1885
+ ): void;
1886
+ /**
1887
+ * Asynchronously creates a unique temporary directory.
1888
+ * Generates six random characters to be appended behind a required prefix to create a unique temporary directory.
1889
+ * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1890
+ */
1891
+ export function mkdtemp(
1892
+ prefix: string,
1893
+ options:
1894
+ | "buffer"
1895
+ | {
1896
+ encoding: "buffer";
1897
+ },
1898
+ callback: (err: NodeJS.ErrnoException | null, folder: Buffer) => void,
1899
+ ): void;
1900
+ /**
1901
+ * Asynchronously creates a unique temporary directory.
1902
+ * Generates six random characters to be appended behind a required prefix to create a unique temporary directory.
1903
+ * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1904
+ */
1905
+ export function mkdtemp(
1906
+ prefix: string,
1907
+ options: EncodingOption,
1908
+ callback: (err: NodeJS.ErrnoException | null, folder: string | Buffer) => void,
1909
+ ): void;
1910
+ /**
1911
+ * Asynchronously creates a unique temporary directory.
1912
+ * Generates six random characters to be appended behind a required prefix to create a unique temporary directory.
1913
+ */
1914
+ export function mkdtemp(
1915
+ prefix: string,
1916
+ callback: (err: NodeJS.ErrnoException | null, folder: string) => void,
1917
+ ): void;
1918
+ export namespace mkdtemp {
1919
+ /**
1920
+ * Asynchronously creates a unique temporary directory.
1921
+ * Generates six random characters to be appended behind a required prefix to create a unique temporary directory.
1922
+ * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1923
+ */
1924
+ function __promisify__(prefix: string, options?: EncodingOption): Promise<string>;
1925
+ /**
1926
+ * Asynchronously creates a unique temporary directory.
1927
+ * Generates six random characters to be appended behind a required prefix to create a unique temporary directory.
1928
+ * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1929
+ */
1930
+ function __promisify__(prefix: string, options: BufferEncodingOption): Promise<Buffer>;
1931
+ /**
1932
+ * Asynchronously creates a unique temporary directory.
1933
+ * Generates six random characters to be appended behind a required prefix to create a unique temporary directory.
1934
+ * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1935
+ */
1936
+ function __promisify__(prefix: string, options?: EncodingOption): Promise<string | Buffer>;
1937
+ }
1938
+ /**
1939
+ * Returns the created directory path.
1940
+ *
1941
+ * For detailed information, see the documentation of the asynchronous version of
1942
+ * this API: {@link mkdtemp}.
1943
+ *
1944
+ * The optional `options` argument can be a string specifying an encoding, or an
1945
+ * object with an `encoding` property specifying the character encoding to use.
1946
+ * @since v5.10.0
1947
+ */
1948
+ export function mkdtempSync(prefix: string, options?: EncodingOption): string;
1949
+ /**
1950
+ * Synchronously creates a unique temporary directory.
1951
+ * Generates six random characters to be appended behind a required prefix to create a unique temporary directory.
1952
+ * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1953
+ */
1954
+ export function mkdtempSync(prefix: string, options: BufferEncodingOption): Buffer;
1955
+ /**
1956
+ * Synchronously creates a unique temporary directory.
1957
+ * Generates six random characters to be appended behind a required prefix to create a unique temporary directory.
1958
+ * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1959
+ */
1960
+ export function mkdtempSync(prefix: string, options?: EncodingOption): string | Buffer;
1961
+ /**
1962
+ * Reads the contents of a directory. The callback gets two arguments `(err, files)` where `files` is an array of the names of the files in the directory excluding `'.'` and `'..'`.
1963
+ *
1964
+ * See the POSIX [`readdir(3)`](http://man7.org/linux/man-pages/man3/readdir.3.html) documentation for more details.
1965
+ *
1966
+ * The optional `options` argument can be a string specifying an encoding, or an
1967
+ * object with an `encoding` property specifying the character encoding to use for
1968
+ * the filenames passed to the callback. If the `encoding` is set to `'buffer'`,
1969
+ * the filenames returned will be passed as `Buffer` objects.
1970
+ *
1971
+ * If `options.withFileTypes` is set to `true`, the `files` array will contain `fs.Dirent` objects.
1972
+ * @since v0.1.8
1973
+ */
1974
+ export function readdir(
1975
+ path: PathLike,
1976
+ options:
1977
+ | {
1978
+ encoding: BufferEncoding | null;
1979
+ withFileTypes?: false | undefined;
1980
+ recursive?: boolean | undefined;
1981
+ }
1982
+ | BufferEncoding
1983
+ | undefined
1984
+ | null,
1985
+ callback: (err: NodeJS.ErrnoException | null, files: string[]) => void,
1986
+ ): void;
1987
+ /**
1988
+ * Asynchronous readdir(3) - read a directory.
1989
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
1990
+ * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
1991
+ */
1992
+ export function readdir(
1993
+ path: PathLike,
1994
+ options:
1995
+ | {
1996
+ encoding: "buffer";
1997
+ withFileTypes?: false | undefined;
1998
+ recursive?: boolean | undefined;
1999
+ }
2000
+ | "buffer",
2001
+ callback: (err: NodeJS.ErrnoException | null, files: Buffer[]) => void,
2002
+ ): void;
2003
+ /**
2004
+ * Asynchronous readdir(3) - read a directory.
2005
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
2006
+ * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
2007
+ */
2008
+ export function readdir(
2009
+ path: PathLike,
2010
+ options:
2011
+ | (ObjectEncodingOptions & {
2012
+ withFileTypes?: false | undefined;
2013
+ recursive?: boolean | undefined;
2014
+ })
2015
+ | BufferEncoding
2016
+ | undefined
2017
+ | null,
2018
+ callback: (err: NodeJS.ErrnoException | null, files: string[] | Buffer[]) => void,
2019
+ ): void;
2020
+ /**
2021
+ * Asynchronous readdir(3) - read a directory.
2022
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
2023
+ */
2024
+ export function readdir(
2025
+ path: PathLike,
2026
+ callback: (err: NodeJS.ErrnoException | null, files: string[]) => void,
2027
+ ): void;
2028
+ /**
2029
+ * Asynchronous readdir(3) - read a directory.
2030
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
2031
+ * @param options If called with `withFileTypes: true` the result data will be an array of Dirent.
2032
+ */
2033
+ export function readdir(
2034
+ path: PathLike,
2035
+ options: ObjectEncodingOptions & {
2036
+ withFileTypes: true;
2037
+ recursive?: boolean | undefined;
2038
+ },
2039
+ callback: (err: NodeJS.ErrnoException | null, files: Dirent[]) => void,
2040
+ ): void;
2041
+ /**
2042
+ * Asynchronous readdir(3) - read a directory.
2043
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
2044
+ * @param options Must include `withFileTypes: true` and `encoding: 'buffer'`.
2045
+ */
2046
+ export function readdir(
2047
+ path: PathLike,
2048
+ options: {
2049
+ encoding: "buffer";
2050
+ withFileTypes: true;
2051
+ recursive?: boolean | undefined;
2052
+ },
2053
+ callback: (err: NodeJS.ErrnoException | null, files: Dirent<Buffer>[]) => void,
2054
+ ): void;
2055
+ export namespace readdir {
2056
+ /**
2057
+ * Asynchronous readdir(3) - read a directory.
2058
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
2059
+ * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
2060
+ */
2061
+ function __promisify__(
2062
+ path: PathLike,
2063
+ options?:
2064
+ | {
2065
+ encoding: BufferEncoding | null;
2066
+ withFileTypes?: false | undefined;
2067
+ recursive?: boolean | undefined;
2068
+ }
2069
+ | BufferEncoding
2070
+ | null,
2071
+ ): Promise<string[]>;
2072
+ /**
2073
+ * Asynchronous readdir(3) - read a directory.
2074
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
2075
+ * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
2076
+ */
2077
+ function __promisify__(
2078
+ path: PathLike,
2079
+ options:
2080
+ | "buffer"
2081
+ | {
2082
+ encoding: "buffer";
2083
+ withFileTypes?: false | undefined;
2084
+ recursive?: boolean | undefined;
2085
+ },
2086
+ ): Promise<Buffer[]>;
2087
+ /**
2088
+ * Asynchronous readdir(3) - read a directory.
2089
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
2090
+ * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
2091
+ */
2092
+ function __promisify__(
2093
+ path: PathLike,
2094
+ options?:
2095
+ | (ObjectEncodingOptions & {
2096
+ withFileTypes?: false | undefined;
2097
+ recursive?: boolean | undefined;
2098
+ })
2099
+ | BufferEncoding
2100
+ | null,
2101
+ ): Promise<string[] | Buffer[]>;
2102
+ /**
2103
+ * Asynchronous readdir(3) - read a directory.
2104
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
2105
+ * @param options If called with `withFileTypes: true` the result data will be an array of Dirent
2106
+ */
2107
+ function __promisify__(
2108
+ path: PathLike,
2109
+ options: ObjectEncodingOptions & {
2110
+ withFileTypes: true;
2111
+ recursive?: boolean | undefined;
2112
+ },
2113
+ ): Promise<Dirent[]>;
2114
+ /**
2115
+ * Asynchronous readdir(3) - read a directory.
2116
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
2117
+ * @param options Must include `withFileTypes: true` and `encoding: 'buffer'`.
2118
+ */
2119
+ function __promisify__(
2120
+ path: PathLike,
2121
+ options: {
2122
+ encoding: "buffer";
2123
+ withFileTypes: true;
2124
+ recursive?: boolean | undefined;
2125
+ },
2126
+ ): Promise<Dirent<Buffer>[]>;
2127
+ }
2128
+ /**
2129
+ * Reads the contents of the directory.
2130
+ *
2131
+ * See the POSIX [`readdir(3)`](http://man7.org/linux/man-pages/man3/readdir.3.html) documentation for more details.
2132
+ *
2133
+ * The optional `options` argument can be a string specifying an encoding, or an
2134
+ * object with an `encoding` property specifying the character encoding to use for
2135
+ * the filenames returned. If the `encoding` is set to `'buffer'`,
2136
+ * the filenames returned will be passed as `Buffer` objects.
2137
+ *
2138
+ * If `options.withFileTypes` is set to `true`, the result will contain `fs.Dirent` objects.
2139
+ * @since v0.1.21
2140
+ */
2141
+ export function readdirSync(
2142
+ path: PathLike,
2143
+ options?:
2144
+ | {
2145
+ encoding: BufferEncoding | null;
2146
+ withFileTypes?: false | undefined;
2147
+ recursive?: boolean | undefined;
2148
+ }
2149
+ | BufferEncoding
2150
+ | null,
2151
+ ): string[];
2152
+ /**
2153
+ * Synchronous readdir(3) - read a directory.
2154
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
2155
+ * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
2156
+ */
2157
+ export function readdirSync(
2158
+ path: PathLike,
2159
+ options:
2160
+ | {
2161
+ encoding: "buffer";
2162
+ withFileTypes?: false | undefined;
2163
+ recursive?: boolean | undefined;
2164
+ }
2165
+ | "buffer",
2166
+ ): Buffer[];
2167
+ /**
2168
+ * Synchronous readdir(3) - read a directory.
2169
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
2170
+ * @param options The encoding (or an object specifying the encoding), used as the encoding of the result. If not provided, `'utf8'` is used.
2171
+ */
2172
+ export function readdirSync(
2173
+ path: PathLike,
2174
+ options?:
2175
+ | (ObjectEncodingOptions & {
2176
+ withFileTypes?: false | undefined;
2177
+ recursive?: boolean | undefined;
2178
+ })
2179
+ | BufferEncoding
2180
+ | null,
2181
+ ): string[] | Buffer[];
2182
+ /**
2183
+ * Synchronous readdir(3) - read a directory.
2184
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
2185
+ * @param options If called with `withFileTypes: true` the result data will be an array of Dirent.
2186
+ */
2187
+ export function readdirSync(
2188
+ path: PathLike,
2189
+ options: ObjectEncodingOptions & {
2190
+ withFileTypes: true;
2191
+ recursive?: boolean | undefined;
2192
+ },
2193
+ ): Dirent[];
2194
+ /**
2195
+ * Synchronous readdir(3) - read a directory.
2196
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
2197
+ * @param options Must include `withFileTypes: true` and `encoding: 'buffer'`.
2198
+ */
2199
+ export function readdirSync(
2200
+ path: PathLike,
2201
+ options: {
2202
+ encoding: "buffer";
2203
+ withFileTypes: true;
2204
+ recursive?: boolean | undefined;
2205
+ },
2206
+ ): Dirent<Buffer>[];
2207
+ /**
2208
+ * Closes the file descriptor. No arguments other than a possible exception are
2209
+ * given to the completion callback.
2210
+ *
2211
+ * Calling `fs.close()` on any file descriptor (`fd`) that is currently in use
2212
+ * through any other `fs` operation may lead to undefined behavior.
2213
+ *
2214
+ * See the POSIX [`close(2)`](http://man7.org/linux/man-pages/man2/close.2.html) documentation for more detail.
2215
+ * @since v0.0.2
2216
+ */
2217
+ export function close(fd: number, callback?: NoParamCallback): void;
2218
+ export namespace close {
2219
+ /**
2220
+ * Asynchronous close(2) - close a file descriptor.
2221
+ * @param fd A file descriptor.
2222
+ */
2223
+ function __promisify__(fd: number): Promise<void>;
2224
+ }
2225
+ /**
2226
+ * Closes the file descriptor. Returns `undefined`.
2227
+ *
2228
+ * Calling `fs.closeSync()` on any file descriptor (`fd`) that is currently in use
2229
+ * through any other `fs` operation may lead to undefined behavior.
2230
+ *
2231
+ * See the POSIX [`close(2)`](http://man7.org/linux/man-pages/man2/close.2.html) documentation for more detail.
2232
+ * @since v0.1.21
2233
+ */
2234
+ export function closeSync(fd: number): void;
2235
+ /**
2236
+ * Asynchronous file open. See the POSIX [`open(2)`](http://man7.org/linux/man-pages/man2/open.2.html) documentation for more details.
2237
+ *
2238
+ * `mode` sets the file mode (permission and sticky bits), but only if the file was
2239
+ * created. On Windows, only the write permission can be manipulated; see {@link chmod}.
2240
+ *
2241
+ * The callback gets two arguments `(err, fd)`.
2242
+ *
2243
+ * Some characters (`< > : " / \ | ? *`) are reserved under Windows as documented
2244
+ * by [Naming Files, Paths, and Namespaces](https://docs.microsoft.com/en-us/windows/desktop/FileIO/naming-a-file). Under NTFS, if the filename contains
2245
+ * a colon, Node.js will open a file system stream, as described by [this MSDN page](https://docs.microsoft.com/en-us/windows/desktop/FileIO/using-streams).
2246
+ *
2247
+ * Functions based on `fs.open()` exhibit this behavior as well:`fs.writeFile()`, `fs.readFile()`, etc.
2248
+ * @since v0.0.2
2249
+ * @param [flags='r'] See `support of file system `flags``.
2250
+ * @param [mode=0o666]
2251
+ */
2252
+ export function open(
2253
+ path: PathLike,
2254
+ flags: OpenMode | undefined,
2255
+ mode: Mode | undefined | null,
2256
+ callback: (err: NodeJS.ErrnoException | null, fd: number) => void,
2257
+ ): void;
2258
+ /**
2259
+ * Asynchronous open(2) - open and possibly create a file. If the file is created, its mode will be `0o666`.
2260
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
2261
+ * @param [flags='r'] See `support of file system `flags``.
2262
+ */
2263
+ export function open(
2264
+ path: PathLike,
2265
+ flags: OpenMode | undefined,
2266
+ callback: (err: NodeJS.ErrnoException | null, fd: number) => void,
2267
+ ): void;
2268
+ /**
2269
+ * Asynchronous open(2) - open and possibly create a file. If the file is created, its mode will be `0o666`.
2270
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
2271
+ */
2272
+ export function open(path: PathLike, callback: (err: NodeJS.ErrnoException | null, fd: number) => void): void;
2273
+ export namespace open {
2274
+ /**
2275
+ * Asynchronous open(2) - open and possibly create a file.
2276
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
2277
+ * @param mode A file mode. If a string is passed, it is parsed as an octal integer. If not supplied, defaults to `0o666`.
2278
+ */
2279
+ function __promisify__(path: PathLike, flags: OpenMode, mode?: Mode | null): Promise<number>;
2280
+ }
2281
+ /**
2282
+ * Returns an integer representing the file descriptor.
2283
+ *
2284
+ * For detailed information, see the documentation of the asynchronous version of
2285
+ * this API: {@link open}.
2286
+ * @since v0.1.21
2287
+ * @param [flags='r']
2288
+ * @param [mode=0o666]
2289
+ */
2290
+ export function openSync(path: PathLike, flags: OpenMode, mode?: Mode | null): number;
2291
+ /**
2292
+ * Change the file system timestamps of the object referenced by `path`.
2293
+ *
2294
+ * The `atime` and `mtime` arguments follow these rules:
2295
+ *
2296
+ * * Values can be either numbers representing Unix epoch time in seconds, `Date`s, or a numeric string like `'123456789.0'`.
2297
+ * * If the value can not be converted to a number, or is `NaN`, `Infinity`, or `-Infinity`, an `Error` will be thrown.
2298
+ * @since v0.4.2
2299
+ */
2300
+ export function utimes(path: PathLike, atime: TimeLike, mtime: TimeLike, callback: NoParamCallback): void;
2301
+ export namespace utimes {
2302
+ /**
2303
+ * Asynchronously change file timestamps of the file referenced by the supplied path.
2304
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
2305
+ * @param atime The last access time. If a string is provided, it will be coerced to number.
2306
+ * @param mtime The last modified time. If a string is provided, it will be coerced to number.
2307
+ */
2308
+ function __promisify__(path: PathLike, atime: TimeLike, mtime: TimeLike): Promise<void>;
2309
+ }
2310
+ /**
2311
+ * Returns `undefined`.
2312
+ *
2313
+ * For detailed information, see the documentation of the asynchronous version of
2314
+ * this API: {@link utimes}.
2315
+ * @since v0.4.2
2316
+ */
2317
+ export function utimesSync(path: PathLike, atime: TimeLike, mtime: TimeLike): void;
2318
+ /**
2319
+ * Change the file system timestamps of the object referenced by the supplied file
2320
+ * descriptor. See {@link utimes}.
2321
+ * @since v0.4.2
2322
+ */
2323
+ export function futimes(fd: number, atime: TimeLike, mtime: TimeLike, callback: NoParamCallback): void;
2324
+ export namespace futimes {
2325
+ /**
2326
+ * Asynchronously change file timestamps of the file referenced by the supplied file descriptor.
2327
+ * @param fd A file descriptor.
2328
+ * @param atime The last access time. If a string is provided, it will be coerced to number.
2329
+ * @param mtime The last modified time. If a string is provided, it will be coerced to number.
2330
+ */
2331
+ function __promisify__(fd: number, atime: TimeLike, mtime: TimeLike): Promise<void>;
2332
+ }
2333
+ /**
2334
+ * Synchronous version of {@link futimes}. Returns `undefined`.
2335
+ * @since v0.4.2
2336
+ */
2337
+ export function futimesSync(fd: number, atime: TimeLike, mtime: TimeLike): void;
2338
+ /**
2339
+ * Request that all data for the open file descriptor is flushed to the storage
2340
+ * device. The specific implementation is operating system and device specific.
2341
+ * Refer to the POSIX [`fsync(2)`](http://man7.org/linux/man-pages/man2/fsync.2.html) documentation for more detail. No arguments other
2342
+ * than a possible exception are given to the completion callback.
2343
+ * @since v0.1.96
2344
+ */
2345
+ export function fsync(fd: number, callback: NoParamCallback): void;
2346
+ export namespace fsync {
2347
+ /**
2348
+ * Asynchronous fsync(2) - synchronize a file's in-core state with the underlying storage device.
2349
+ * @param fd A file descriptor.
2350
+ */
2351
+ function __promisify__(fd: number): Promise<void>;
2352
+ }
2353
+ /**
2354
+ * Request that all data for the open file descriptor is flushed to the storage
2355
+ * device. The specific implementation is operating system and device specific.
2356
+ * Refer to the POSIX [`fsync(2)`](http://man7.org/linux/man-pages/man2/fsync.2.html) documentation for more detail. Returns `undefined`.
2357
+ * @since v0.1.96
2358
+ */
2359
+ export function fsyncSync(fd: number): void;
2360
+ export interface WriteOptions {
2361
+ /**
2362
+ * @default 0
2363
+ */
2364
+ offset?: number | undefined;
2365
+ /**
2366
+ * @default `buffer.byteLength - offset`
2367
+ */
2368
+ length?: number | undefined;
2369
+ /**
2370
+ * @default null
2371
+ */
2372
+ position?: number | undefined | null;
2373
+ }
2374
+ /**
2375
+ * Write `buffer` to the file specified by `fd`.
2376
+ *
2377
+ * `offset` determines the part of the buffer to be written, and `length` is
2378
+ * an integer specifying the number of bytes to write.
2379
+ *
2380
+ * `position` refers to the offset from the beginning of the file where this data
2381
+ * should be written. If `typeof position !== 'number'`, the data will be written
2382
+ * at the current position. See [`pwrite(2)`](http://man7.org/linux/man-pages/man2/pwrite.2.html).
2383
+ *
2384
+ * The callback will be given three arguments `(err, bytesWritten, buffer)` where `bytesWritten` specifies how many _bytes_ were written from `buffer`.
2385
+ *
2386
+ * If this method is invoked as its `util.promisify()` ed version, it returns
2387
+ * a promise for an `Object` with `bytesWritten` and `buffer` properties.
2388
+ *
2389
+ * It is unsafe to use `fs.write()` multiple times on the same file without waiting
2390
+ * for the callback. For this scenario, {@link createWriteStream} is
2391
+ * recommended.
2392
+ *
2393
+ * On Linux, positional writes don't work when the file is opened in append mode.
2394
+ * The kernel ignores the position argument and always appends the data to
2395
+ * the end of the file.
2396
+ * @since v0.0.2
2397
+ * @param [offset=0]
2398
+ * @param [length=buffer.byteLength - offset]
2399
+ * @param [position='null']
2400
+ */
2401
+ export function write<TBuffer extends NodeJS.ArrayBufferView>(
2402
+ fd: number,
2403
+ buffer: TBuffer,
2404
+ offset: number | undefined | null,
2405
+ length: number | undefined | null,
2406
+ position: number | undefined | null,
2407
+ callback: (err: NodeJS.ErrnoException | null, written: number, buffer: TBuffer) => void,
2408
+ ): void;
2409
+ /**
2410
+ * Asynchronously writes `buffer` to the file referenced by the supplied file descriptor.
2411
+ * @param fd A file descriptor.
2412
+ * @param offset The part of the buffer to be written. If not supplied, defaults to `0`.
2413
+ * @param length The number of bytes to write. If not supplied, defaults to `buffer.length - offset`.
2414
+ */
2415
+ export function write<TBuffer extends NodeJS.ArrayBufferView>(
2416
+ fd: number,
2417
+ buffer: TBuffer,
2418
+ offset: number | undefined | null,
2419
+ length: number | undefined | null,
2420
+ callback: (err: NodeJS.ErrnoException | null, written: number, buffer: TBuffer) => void,
2421
+ ): void;
2422
+ /**
2423
+ * Asynchronously writes `buffer` to the file referenced by the supplied file descriptor.
2424
+ * @param fd A file descriptor.
2425
+ * @param offset The part of the buffer to be written. If not supplied, defaults to `0`.
2426
+ */
2427
+ export function write<TBuffer extends NodeJS.ArrayBufferView>(
2428
+ fd: number,
2429
+ buffer: TBuffer,
2430
+ offset: number | undefined | null,
2431
+ callback: (err: NodeJS.ErrnoException | null, written: number, buffer: TBuffer) => void,
2432
+ ): void;
2433
+ /**
2434
+ * Asynchronously writes `buffer` to the file referenced by the supplied file descriptor.
2435
+ * @param fd A file descriptor.
2436
+ */
2437
+ export function write<TBuffer extends NodeJS.ArrayBufferView>(
2438
+ fd: number,
2439
+ buffer: TBuffer,
2440
+ callback: (err: NodeJS.ErrnoException | null, written: number, buffer: TBuffer) => void,
2441
+ ): void;
2442
+ /**
2443
+ * Asynchronously writes `buffer` to the file referenced by the supplied file descriptor.
2444
+ * @param fd A file descriptor.
2445
+ * @param options An object with the following properties:
2446
+ * * `offset` The part of the buffer to be written. If not supplied, defaults to `0`.
2447
+ * * `length` The number of bytes to write. If not supplied, defaults to `buffer.length - offset`.
2448
+ * * `position` The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position.
2449
+ */
2450
+ export function write<TBuffer extends NodeJS.ArrayBufferView>(
2451
+ fd: number,
2452
+ buffer: TBuffer,
2453
+ options: WriteOptions,
2454
+ callback: (err: NodeJS.ErrnoException | null, written: number, buffer: TBuffer) => void,
2455
+ ): void;
2456
+ /**
2457
+ * Asynchronously writes `string` to the file referenced by the supplied file descriptor.
2458
+ * @param fd A file descriptor.
2459
+ * @param string A string to write.
2460
+ * @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position.
2461
+ * @param encoding The expected string encoding.
2462
+ */
2463
+ export function write(
2464
+ fd: number,
2465
+ string: string,
2466
+ position: number | undefined | null,
2467
+ encoding: BufferEncoding | undefined | null,
2468
+ callback: (err: NodeJS.ErrnoException | null, written: number, str: string) => void,
2469
+ ): void;
2470
+ /**
2471
+ * Asynchronously writes `string` to the file referenced by the supplied file descriptor.
2472
+ * @param fd A file descriptor.
2473
+ * @param string A string to write.
2474
+ * @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position.
2475
+ */
2476
+ export function write(
2477
+ fd: number,
2478
+ string: string,
2479
+ position: number | undefined | null,
2480
+ callback: (err: NodeJS.ErrnoException | null, written: number, str: string) => void,
2481
+ ): void;
2482
+ /**
2483
+ * Asynchronously writes `string` to the file referenced by the supplied file descriptor.
2484
+ * @param fd A file descriptor.
2485
+ * @param string A string to write.
2486
+ */
2487
+ export function write(
2488
+ fd: number,
2489
+ string: string,
2490
+ callback: (err: NodeJS.ErrnoException | null, written: number, str: string) => void,
2491
+ ): void;
2492
+ export namespace write {
2493
+ /**
2494
+ * Asynchronously writes `buffer` to the file referenced by the supplied file descriptor.
2495
+ * @param fd A file descriptor.
2496
+ * @param offset The part of the buffer to be written. If not supplied, defaults to `0`.
2497
+ * @param length The number of bytes to write. If not supplied, defaults to `buffer.length - offset`.
2498
+ * @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position.
2499
+ */
2500
+ function __promisify__<TBuffer extends NodeJS.ArrayBufferView>(
2501
+ fd: number,
2502
+ buffer?: TBuffer,
2503
+ offset?: number,
2504
+ length?: number,
2505
+ position?: number | null,
2506
+ ): Promise<{
2507
+ bytesWritten: number;
2508
+ buffer: TBuffer;
2509
+ }>;
2510
+ /**
2511
+ * Asynchronously writes `buffer` to the file referenced by the supplied file descriptor.
2512
+ * @param fd A file descriptor.
2513
+ * @param options An object with the following properties:
2514
+ * * `offset` The part of the buffer to be written. If not supplied, defaults to `0`.
2515
+ * * `length` The number of bytes to write. If not supplied, defaults to `buffer.length - offset`.
2516
+ * * `position` The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position.
2517
+ */
2518
+ function __promisify__<TBuffer extends NodeJS.ArrayBufferView>(
2519
+ fd: number,
2520
+ buffer?: TBuffer,
2521
+ options?: WriteOptions,
2522
+ ): Promise<{
2523
+ bytesWritten: number;
2524
+ buffer: TBuffer;
2525
+ }>;
2526
+ /**
2527
+ * Asynchronously writes `string` to the file referenced by the supplied file descriptor.
2528
+ * @param fd A file descriptor.
2529
+ * @param string A string to write.
2530
+ * @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position.
2531
+ * @param encoding The expected string encoding.
2532
+ */
2533
+ function __promisify__(
2534
+ fd: number,
2535
+ string: string,
2536
+ position?: number | null,
2537
+ encoding?: BufferEncoding | null,
2538
+ ): Promise<{
2539
+ bytesWritten: number;
2540
+ buffer: string;
2541
+ }>;
2542
+ }
2543
+ /**
2544
+ * For detailed information, see the documentation of the asynchronous version of
2545
+ * this API: {@link write}.
2546
+ * @since v0.1.21
2547
+ * @param [offset=0]
2548
+ * @param [length=buffer.byteLength - offset]
2549
+ * @param [position='null']
2550
+ * @return The number of bytes written.
2551
+ */
2552
+ export function writeSync(
2553
+ fd: number,
2554
+ buffer: NodeJS.ArrayBufferView,
2555
+ offset?: number | null,
2556
+ length?: number | null,
2557
+ position?: number | null,
2558
+ ): number;
2559
+ /**
2560
+ * Synchronously writes `string` to the file referenced by the supplied file descriptor, returning the number of bytes written.
2561
+ * @param fd A file descriptor.
2562
+ * @param string A string to write.
2563
+ * @param position The offset from the beginning of the file where this data should be written. If not supplied, defaults to the current position.
2564
+ * @param encoding The expected string encoding.
2565
+ */
2566
+ export function writeSync(
2567
+ fd: number,
2568
+ string: string,
2569
+ position?: number | null,
2570
+ encoding?: BufferEncoding | null,
2571
+ ): number;
2572
+ export type ReadPosition = number | bigint;
2573
+ export interface ReadSyncOptions {
2574
+ /**
2575
+ * @default 0
2576
+ */
2577
+ offset?: number | undefined;
2578
+ /**
2579
+ * @default `length of buffer`
2580
+ */
2581
+ length?: number | undefined;
2582
+ /**
2583
+ * @default null
2584
+ */
2585
+ position?: ReadPosition | null | undefined;
2586
+ }
2587
+ export interface ReadAsyncOptions<TBuffer extends NodeJS.ArrayBufferView> extends ReadSyncOptions {
2588
+ buffer?: TBuffer;
2589
+ }
2590
+ /**
2591
+ * Read data from the file specified by `fd`.
2592
+ *
2593
+ * The callback is given the three arguments, `(err, bytesRead, buffer)`.
2594
+ *
2595
+ * If the file is not modified concurrently, the end-of-file is reached when the
2596
+ * number of bytes read is zero.
2597
+ *
2598
+ * If this method is invoked as its `util.promisify()` ed version, it returns
2599
+ * a promise for an `Object` with `bytesRead` and `buffer` properties.
2600
+ * @since v0.0.2
2601
+ * @param buffer The buffer that the data will be written to.
2602
+ * @param offset The position in `buffer` to write the data to.
2603
+ * @param length The number of bytes to read.
2604
+ * @param position Specifies where to begin reading from in the file. If `position` is `null` or `-1 `, data will be read from the current file position, and the file position will be updated. If
2605
+ * `position` is an integer, the file position will be unchanged.
2606
+ */
2607
+ export function read<TBuffer extends NodeJS.ArrayBufferView>(
2608
+ fd: number,
2609
+ buffer: TBuffer,
2610
+ offset: number,
2611
+ length: number,
2612
+ position: ReadPosition | null,
2613
+ callback: (err: NodeJS.ErrnoException | null, bytesRead: number, buffer: TBuffer) => void,
2614
+ ): void;
2615
+ /**
2616
+ * Similar to the above `fs.read` function, this version takes an optional `options` object.
2617
+ * If not otherwise specified in an `options` object,
2618
+ * `buffer` defaults to `Buffer.alloc(16384)`,
2619
+ * `offset` defaults to `0`,
2620
+ * `length` defaults to `buffer.byteLength`, `- offset` as of Node 17.6.0
2621
+ * `position` defaults to `null`
2622
+ * @since v12.17.0, 13.11.0
2623
+ */
2624
+ export function read<TBuffer extends NodeJS.ArrayBufferView>(
2625
+ fd: number,
2626
+ options: ReadAsyncOptions<TBuffer>,
2627
+ callback: (err: NodeJS.ErrnoException | null, bytesRead: number, buffer: TBuffer) => void,
2628
+ ): void;
2629
+ export function read<TBuffer extends NodeJS.ArrayBufferView>(
2630
+ fd: number,
2631
+ buffer: TBuffer,
2632
+ options: ReadSyncOptions,
2633
+ callback: (err: NodeJS.ErrnoException | null, bytesRead: number, buffer: TBuffer) => void,
2634
+ ): void;
2635
+ export function read<TBuffer extends NodeJS.ArrayBufferView>(
2636
+ fd: number,
2637
+ buffer: TBuffer,
2638
+ callback: (err: NodeJS.ErrnoException | null, bytesRead: number, buffer: TBuffer) => void,
2639
+ ): void;
2640
+ export function read(
2641
+ fd: number,
2642
+ callback: (err: NodeJS.ErrnoException | null, bytesRead: number, buffer: NodeJS.ArrayBufferView) => void,
2643
+ ): void;
2644
+ export namespace read {
2645
+ /**
2646
+ * @param fd A file descriptor.
2647
+ * @param buffer The buffer that the data will be written to.
2648
+ * @param offset The offset in the buffer at which to start writing.
2649
+ * @param length The number of bytes to read.
2650
+ * @param position The offset from the beginning of the file from which data should be read. If `null`, data will be read from the current position.
2651
+ */
2652
+ function __promisify__<TBuffer extends NodeJS.ArrayBufferView>(
2653
+ fd: number,
2654
+ buffer: TBuffer,
2655
+ offset: number,
2656
+ length: number,
2657
+ position: number | null,
2658
+ ): Promise<{
2659
+ bytesRead: number;
2660
+ buffer: TBuffer;
2661
+ }>;
2662
+ function __promisify__<TBuffer extends NodeJS.ArrayBufferView>(
2663
+ fd: number,
2664
+ options: ReadAsyncOptions<TBuffer>,
2665
+ ): Promise<{
2666
+ bytesRead: number;
2667
+ buffer: TBuffer;
2668
+ }>;
2669
+ function __promisify__(fd: number): Promise<{
2670
+ bytesRead: number;
2671
+ buffer: NodeJS.ArrayBufferView;
2672
+ }>;
2673
+ }
2674
+ /**
2675
+ * Returns the number of `bytesRead`.
2676
+ *
2677
+ * For detailed information, see the documentation of the asynchronous version of
2678
+ * this API: {@link read}.
2679
+ * @since v0.1.21
2680
+ * @param [position='null']
2681
+ */
2682
+ export function readSync(
2683
+ fd: number,
2684
+ buffer: NodeJS.ArrayBufferView,
2685
+ offset: number,
2686
+ length: number,
2687
+ position: ReadPosition | null,
2688
+ ): number;
2689
+ /**
2690
+ * Similar to the above `fs.readSync` function, this version takes an optional `options` object.
2691
+ * If no `options` object is specified, it will default with the above values.
2692
+ */
2693
+ export function readSync(fd: number, buffer: NodeJS.ArrayBufferView, opts?: ReadSyncOptions): number;
2694
+ /**
2695
+ * Asynchronously reads the entire contents of a file.
2696
+ *
2697
+ * ```js
2698
+ * import { readFile } from 'node:fs';
2699
+ *
2700
+ * readFile('/etc/passwd', (err, data) => {
2701
+ * if (err) throw err;
2702
+ * console.log(data);
2703
+ * });
2704
+ * ```
2705
+ *
2706
+ * The callback is passed two arguments `(err, data)`, where `data` is the
2707
+ * contents of the file.
2708
+ *
2709
+ * If no encoding is specified, then the raw buffer is returned.
2710
+ *
2711
+ * If `options` is a string, then it specifies the encoding:
2712
+ *
2713
+ * ```js
2714
+ * import { readFile } from 'node:fs';
2715
+ *
2716
+ * readFile('/etc/passwd', 'utf8', callback);
2717
+ * ```
2718
+ *
2719
+ * When the path is a directory, the behavior of `fs.readFile()` and {@link readFileSync} is platform-specific. On macOS, Linux, and Windows, an
2720
+ * error will be returned. On FreeBSD, a representation of the directory's contents
2721
+ * will be returned.
2722
+ *
2723
+ * ```js
2724
+ * import { readFile } from 'node:fs';
2725
+ *
2726
+ * // macOS, Linux, and Windows
2727
+ * readFile('<directory>', (err, data) => {
2728
+ * // => [Error: EISDIR: illegal operation on a directory, read <directory>]
2729
+ * });
2730
+ *
2731
+ * // FreeBSD
2732
+ * readFile('<directory>', (err, data) => {
2733
+ * // => null, <data>
2734
+ * });
2735
+ * ```
2736
+ *
2737
+ * It is possible to abort an ongoing request using an `AbortSignal`. If a
2738
+ * request is aborted the callback is called with an `AbortError`:
2739
+ *
2740
+ * ```js
2741
+ * import { readFile } from 'node:fs';
2742
+ *
2743
+ * const controller = new AbortController();
2744
+ * const signal = controller.signal;
2745
+ * readFile(fileInfo[0].name, { signal }, (err, buf) => {
2746
+ * // ...
2747
+ * });
2748
+ * // When you want to abort the request
2749
+ * controller.abort();
2750
+ * ```
2751
+ *
2752
+ * The `fs.readFile()` function buffers the entire file. To minimize memory costs,
2753
+ * when possible prefer streaming via `fs.createReadStream()`.
2754
+ *
2755
+ * Aborting an ongoing request does not abort individual operating
2756
+ * system requests but rather the internal buffering `fs.readFile` performs.
2757
+ * @since v0.1.29
2758
+ * @param path filename or file descriptor
2759
+ */
2760
+ export function readFile(
2761
+ path: PathOrFileDescriptor,
2762
+ options:
2763
+ | ({
2764
+ encoding?: null | undefined;
2765
+ flag?: string | undefined;
2766
+ } & Abortable)
2767
+ | undefined
2768
+ | null,
2769
+ callback: (err: NodeJS.ErrnoException | null, data: NonSharedBuffer) => void,
2770
+ ): void;
2771
+ /**
2772
+ * Asynchronously reads the entire contents of a file.
2773
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
2774
+ * If a file descriptor is provided, the underlying file will _not_ be closed automatically.
2775
+ * @param options Either the encoding for the result, or an object that contains the encoding and an optional flag.
2776
+ * If a flag is not provided, it defaults to `'r'`.
2777
+ */
2778
+ export function readFile(
2779
+ path: PathOrFileDescriptor,
2780
+ options:
2781
+ | ({
2782
+ encoding: BufferEncoding;
2783
+ flag?: string | undefined;
2784
+ } & Abortable)
2785
+ | BufferEncoding,
2786
+ callback: (err: NodeJS.ErrnoException | null, data: string) => void,
2787
+ ): void;
2788
+ /**
2789
+ * Asynchronously reads the entire contents of a file.
2790
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
2791
+ * If a file descriptor is provided, the underlying file will _not_ be closed automatically.
2792
+ * @param options Either the encoding for the result, or an object that contains the encoding and an optional flag.
2793
+ * If a flag is not provided, it defaults to `'r'`.
2794
+ */
2795
+ export function readFile(
2796
+ path: PathOrFileDescriptor,
2797
+ options:
2798
+ | (ObjectEncodingOptions & {
2799
+ flag?: string | undefined;
2800
+ } & Abortable)
2801
+ | BufferEncoding
2802
+ | undefined
2803
+ | null,
2804
+ callback: (err: NodeJS.ErrnoException | null, data: string | NonSharedBuffer) => void,
2805
+ ): void;
2806
+ /**
2807
+ * Asynchronously reads the entire contents of a file.
2808
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
2809
+ * If a file descriptor is provided, the underlying file will _not_ be closed automatically.
2810
+ */
2811
+ export function readFile(
2812
+ path: PathOrFileDescriptor,
2813
+ callback: (err: NodeJS.ErrnoException | null, data: NonSharedBuffer) => void,
2814
+ ): void;
2815
+ export namespace readFile {
2816
+ /**
2817
+ * Asynchronously reads the entire contents of a file.
2818
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
2819
+ * If a file descriptor is provided, the underlying file will _not_ be closed automatically.
2820
+ * @param options An object that may contain an optional flag.
2821
+ * If a flag is not provided, it defaults to `'r'`.
2822
+ */
2823
+ function __promisify__(
2824
+ path: PathOrFileDescriptor,
2825
+ options?: {
2826
+ encoding?: null | undefined;
2827
+ flag?: string | undefined;
2828
+ } | null,
2829
+ ): Promise<NonSharedBuffer>;
2830
+ /**
2831
+ * Asynchronously reads the entire contents of a file.
2832
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
2833
+ * URL support is _experimental_.
2834
+ * If a file descriptor is provided, the underlying file will _not_ be closed automatically.
2835
+ * @param options Either the encoding for the result, or an object that contains the encoding and an optional flag.
2836
+ * If a flag is not provided, it defaults to `'r'`.
2837
+ */
2838
+ function __promisify__(
2839
+ path: PathOrFileDescriptor,
2840
+ options:
2841
+ | {
2842
+ encoding: BufferEncoding;
2843
+ flag?: string | undefined;
2844
+ }
2845
+ | BufferEncoding,
2846
+ ): Promise<string>;
2847
+ /**
2848
+ * Asynchronously reads the entire contents of a file.
2849
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
2850
+ * URL support is _experimental_.
2851
+ * If a file descriptor is provided, the underlying file will _not_ be closed automatically.
2852
+ * @param options Either the encoding for the result, or an object that contains the encoding and an optional flag.
2853
+ * If a flag is not provided, it defaults to `'r'`.
2854
+ */
2855
+ function __promisify__(
2856
+ path: PathOrFileDescriptor,
2857
+ options?:
2858
+ | (ObjectEncodingOptions & {
2859
+ flag?: string | undefined;
2860
+ })
2861
+ | BufferEncoding
2862
+ | null,
2863
+ ): Promise<string | NonSharedBuffer>;
2864
+ }
2865
+ /**
2866
+ * Returns the contents of the `path`.
2867
+ *
2868
+ * For detailed information, see the documentation of the asynchronous version of
2869
+ * this API: {@link readFile}.
2870
+ *
2871
+ * If the `encoding` option is specified then this function returns a
2872
+ * string. Otherwise it returns a buffer.
2873
+ *
2874
+ * Similar to {@link readFile}, when the path is a directory, the behavior of `fs.readFileSync()` is platform-specific.
2875
+ *
2876
+ * ```js
2877
+ * import { readFileSync } from 'node:fs';
2878
+ *
2879
+ * // macOS, Linux, and Windows
2880
+ * readFileSync('<directory>');
2881
+ * // => [Error: EISDIR: illegal operation on a directory, read <directory>]
2882
+ *
2883
+ * // FreeBSD
2884
+ * readFileSync('<directory>'); // => <data>
2885
+ * ```
2886
+ * @since v0.1.8
2887
+ * @param path filename or file descriptor
2888
+ */
2889
+ export function readFileSync(
2890
+ path: PathOrFileDescriptor,
2891
+ options?: {
2892
+ encoding?: null | undefined;
2893
+ flag?: string | undefined;
2894
+ } | null,
2895
+ ): NonSharedBuffer;
2896
+ /**
2897
+ * Synchronously reads the entire contents of a file.
2898
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
2899
+ * If a file descriptor is provided, the underlying file will _not_ be closed automatically.
2900
+ * @param options Either the encoding for the result, or an object that contains the encoding and an optional flag.
2901
+ * If a flag is not provided, it defaults to `'r'`.
2902
+ */
2903
+ export function readFileSync(
2904
+ path: PathOrFileDescriptor,
2905
+ options:
2906
+ | {
2907
+ encoding: BufferEncoding;
2908
+ flag?: string | undefined;
2909
+ }
2910
+ | BufferEncoding,
2911
+ ): string;
2912
+ /**
2913
+ * Synchronously reads the entire contents of a file.
2914
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
2915
+ * If a file descriptor is provided, the underlying file will _not_ be closed automatically.
2916
+ * @param options Either the encoding for the result, or an object that contains the encoding and an optional flag.
2917
+ * If a flag is not provided, it defaults to `'r'`.
2918
+ */
2919
+ export function readFileSync(
2920
+ path: PathOrFileDescriptor,
2921
+ options?:
2922
+ | (ObjectEncodingOptions & {
2923
+ flag?: string | undefined;
2924
+ })
2925
+ | BufferEncoding
2926
+ | null,
2927
+ ): string | NonSharedBuffer;
2928
+ export type WriteFileOptions =
2929
+ | (
2930
+ & ObjectEncodingOptions
2931
+ & Abortable
2932
+ & {
2933
+ mode?: Mode | undefined;
2934
+ flag?: string | undefined;
2935
+ flush?: boolean | undefined;
2936
+ }
2937
+ )
2938
+ | BufferEncoding
2939
+ | null;
2940
+ /**
2941
+ * When `file` is a filename, asynchronously writes data to the file, replacing the
2942
+ * file if it already exists. `data` can be a string or a buffer.
2943
+ *
2944
+ * When `file` is a file descriptor, the behavior is similar to calling `fs.write()` directly (which is recommended). See the notes below on using
2945
+ * a file descriptor.
2946
+ *
2947
+ * The `encoding` option is ignored if `data` is a buffer.
2948
+ *
2949
+ * The `mode` option only affects the newly created file. See {@link open} for more details.
2950
+ *
2951
+ * ```js
2952
+ * import { writeFile } from 'node:fs';
2953
+ * import { Buffer } from 'node:buffer';
2954
+ *
2955
+ * const data = new Uint8Array(Buffer.from('Hello Node.js'));
2956
+ * writeFile('message.txt', data, (err) => {
2957
+ * if (err) throw err;
2958
+ * console.log('The file has been saved!');
2959
+ * });
2960
+ * ```
2961
+ *
2962
+ * If `options` is a string, then it specifies the encoding:
2963
+ *
2964
+ * ```js
2965
+ * import { writeFile } from 'node:fs';
2966
+ *
2967
+ * writeFile('message.txt', 'Hello Node.js', 'utf8', callback);
2968
+ * ```
2969
+ *
2970
+ * It is unsafe to use `fs.writeFile()` multiple times on the same file without
2971
+ * waiting for the callback. For this scenario, {@link createWriteStream} is
2972
+ * recommended.
2973
+ *
2974
+ * Similarly to `fs.readFile` \- `fs.writeFile` is a convenience method that
2975
+ * performs multiple `write` calls internally to write the buffer passed to it.
2976
+ * For performance sensitive code consider using {@link createWriteStream}.
2977
+ *
2978
+ * It is possible to use an `AbortSignal` to cancel an `fs.writeFile()`.
2979
+ * Cancelation is "best effort", and some amount of data is likely still
2980
+ * to be written.
2981
+ *
2982
+ * ```js
2983
+ * import { writeFile } from 'node:fs';
2984
+ * import { Buffer } from 'node:buffer';
2985
+ *
2986
+ * const controller = new AbortController();
2987
+ * const { signal } = controller;
2988
+ * const data = new Uint8Array(Buffer.from('Hello Node.js'));
2989
+ * writeFile('message.txt', data, { signal }, (err) => {
2990
+ * // When a request is aborted - the callback is called with an AbortError
2991
+ * });
2992
+ * // When the request should be aborted
2993
+ * controller.abort();
2994
+ * ```
2995
+ *
2996
+ * Aborting an ongoing request does not abort individual operating
2997
+ * system requests but rather the internal buffering `fs.writeFile` performs.
2998
+ * @since v0.1.29
2999
+ * @param file filename or file descriptor
3000
+ */
3001
+ export function writeFile(
3002
+ file: PathOrFileDescriptor,
3003
+ data: string | NodeJS.ArrayBufferView,
3004
+ options: WriteFileOptions,
3005
+ callback: NoParamCallback,
3006
+ ): void;
3007
+ /**
3008
+ * Asynchronously writes data to a file, replacing the file if it already exists.
3009
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
3010
+ * If a file descriptor is provided, the underlying file will _not_ be closed automatically.
3011
+ * @param data The data to write. If something other than a Buffer or Uint8Array is provided, the value is coerced to a string.
3012
+ */
3013
+ export function writeFile(
3014
+ path: PathOrFileDescriptor,
3015
+ data: string | NodeJS.ArrayBufferView,
3016
+ callback: NoParamCallback,
3017
+ ): void;
3018
+ export namespace writeFile {
3019
+ /**
3020
+ * Asynchronously writes data to a file, replacing the file if it already exists.
3021
+ * @param path A path to a file. If a URL is provided, it must use the `file:` protocol.
3022
+ * URL support is _experimental_.
3023
+ * If a file descriptor is provided, the underlying file will _not_ be closed automatically.
3024
+ * @param data The data to write. If something other than a Buffer or Uint8Array is provided, the value is coerced to a string.
3025
+ * @param options Either the encoding for the file, or an object optionally specifying the encoding, file mode, and flag.
3026
+ * If `encoding` is not supplied, the default of `'utf8'` is used.
3027
+ * If `mode` is not supplied, the default of `0o666` is used.
3028
+ * If `mode` is a string, it is parsed as an octal integer.
3029
+ * If `flag` is not supplied, the default of `'w'` is used.
3030
+ */
3031
+ function __promisify__(
3032
+ path: PathOrFileDescriptor,
3033
+ data: string | NodeJS.ArrayBufferView,
3034
+ options?: WriteFileOptions,
3035
+ ): Promise<void>;
3036
+ }
3037
+ /**
3038
+ * Returns `undefined`.
3039
+ *
3040
+ * The `mode` option only affects the newly created file. See {@link open} for more details.
3041
+ *
3042
+ * For detailed information, see the documentation of the asynchronous version of
3043
+ * this API: {@link writeFile}.
3044
+ * @since v0.1.29
3045
+ * @param file filename or file descriptor
3046
+ */
3047
+ export function writeFileSync(
3048
+ file: PathOrFileDescriptor,
3049
+ data: string | NodeJS.ArrayBufferView,
3050
+ options?: WriteFileOptions,
3051
+ ): void;
3052
+ /**
3053
+ * Asynchronously append data to a file, creating the file if it does not yet
3054
+ * exist. `data` can be a string or a `Buffer`.
3055
+ *
3056
+ * The `mode` option only affects the newly created file. See {@link open} for more details.
3057
+ *
3058
+ * ```js
3059
+ * import { appendFile } from 'node:fs';
3060
+ *
3061
+ * appendFile('message.txt', 'data to append', (err) => {
3062
+ * if (err) throw err;
3063
+ * console.log('The "data to append" was appended to file!');
3064
+ * });
3065
+ * ```
3066
+ *
3067
+ * If `options` is a string, then it specifies the encoding:
3068
+ *
3069
+ * ```js
3070
+ * import { appendFile } from 'node:fs';
3071
+ *
3072
+ * appendFile('message.txt', 'data to append', 'utf8', callback);
3073
+ * ```
3074
+ *
3075
+ * The `path` may be specified as a numeric file descriptor that has been opened
3076
+ * for appending (using `fs.open()` or `fs.openSync()`). The file descriptor will
3077
+ * not be closed automatically.
3078
+ *
3079
+ * ```js
3080
+ * import { open, close, appendFile } from 'node:fs';
3081
+ *
3082
+ * function closeFd(fd) {
3083
+ * close(fd, (err) => {
3084
+ * if (err) throw err;
3085
+ * });
3086
+ * }
3087
+ *
3088
+ * open('message.txt', 'a', (err, fd) => {
3089
+ * if (err) throw err;
3090
+ *
3091
+ * try {
3092
+ * appendFile(fd, 'data to append', 'utf8', (err) => {
3093
+ * closeFd(fd);
3094
+ * if (err) throw err;
3095
+ * });
3096
+ * } catch (err) {
3097
+ * closeFd(fd);
3098
+ * throw err;
3099
+ * }
3100
+ * });
3101
+ * ```
3102
+ * @since v0.6.7
3103
+ * @param path filename or file descriptor
3104
+ */
3105
+ export function appendFile(
3106
+ path: PathOrFileDescriptor,
3107
+ data: string | Uint8Array,
3108
+ options: WriteFileOptions,
3109
+ callback: NoParamCallback,
3110
+ ): void;
3111
+ /**
3112
+ * Asynchronously append data to a file, creating the file if it does not exist.
3113
+ * @param file A path to a file. If a URL is provided, it must use the `file:` protocol.
3114
+ * If a file descriptor is provided, the underlying file will _not_ be closed automatically.
3115
+ * @param data The data to write. If something other than a Buffer or Uint8Array is provided, the value is coerced to a string.
3116
+ */
3117
+ export function appendFile(file: PathOrFileDescriptor, data: string | Uint8Array, callback: NoParamCallback): void;
3118
+ export namespace appendFile {
3119
+ /**
3120
+ * Asynchronously append data to a file, creating the file if it does not exist.
3121
+ * @param file A path to a file. If a URL is provided, it must use the `file:` protocol.
3122
+ * URL support is _experimental_.
3123
+ * If a file descriptor is provided, the underlying file will _not_ be closed automatically.
3124
+ * @param data The data to write. If something other than a Buffer or Uint8Array is provided, the value is coerced to a string.
3125
+ * @param options Either the encoding for the file, or an object optionally specifying the encoding, file mode, and flag.
3126
+ * If `encoding` is not supplied, the default of `'utf8'` is used.
3127
+ * If `mode` is not supplied, the default of `0o666` is used.
3128
+ * If `mode` is a string, it is parsed as an octal integer.
3129
+ * If `flag` is not supplied, the default of `'a'` is used.
3130
+ */
3131
+ function __promisify__(
3132
+ file: PathOrFileDescriptor,
3133
+ data: string | Uint8Array,
3134
+ options?: WriteFileOptions,
3135
+ ): Promise<void>;
3136
+ }
3137
+ /**
3138
+ * Synchronously append data to a file, creating the file if it does not yet
3139
+ * exist. `data` can be a string or a `Buffer`.
3140
+ *
3141
+ * The `mode` option only affects the newly created file. See {@link open} for more details.
3142
+ *
3143
+ * ```js
3144
+ * import { appendFileSync } from 'node:fs';
3145
+ *
3146
+ * try {
3147
+ * appendFileSync('message.txt', 'data to append');
3148
+ * console.log('The "data to append" was appended to file!');
3149
+ * } catch (err) {
3150
+ * // Handle the error
3151
+ * }
3152
+ * ```
3153
+ *
3154
+ * If `options` is a string, then it specifies the encoding:
3155
+ *
3156
+ * ```js
3157
+ * import { appendFileSync } from 'node:fs';
3158
+ *
3159
+ * appendFileSync('message.txt', 'data to append', 'utf8');
3160
+ * ```
3161
+ *
3162
+ * The `path` may be specified as a numeric file descriptor that has been opened
3163
+ * for appending (using `fs.open()` or `fs.openSync()`). The file descriptor will
3164
+ * not be closed automatically.
3165
+ *
3166
+ * ```js
3167
+ * import { openSync, closeSync, appendFileSync } from 'node:fs';
3168
+ *
3169
+ * let fd;
3170
+ *
3171
+ * try {
3172
+ * fd = openSync('message.txt', 'a');
3173
+ * appendFileSync(fd, 'data to append', 'utf8');
3174
+ * } catch (err) {
3175
+ * // Handle the error
3176
+ * } finally {
3177
+ * if (fd !== undefined)
3178
+ * closeSync(fd);
3179
+ * }
3180
+ * ```
3181
+ * @since v0.6.7
3182
+ * @param path filename or file descriptor
3183
+ */
3184
+ export function appendFileSync(
3185
+ path: PathOrFileDescriptor,
3186
+ data: string | Uint8Array,
3187
+ options?: WriteFileOptions,
3188
+ ): void;
3189
+ /**
3190
+ * Watch for changes on `filename`. The callback `listener` will be called each
3191
+ * time the file is accessed.
3192
+ *
3193
+ * The `options` argument may be omitted. If provided, it should be an object. The `options` object may contain a boolean named `persistent` that indicates
3194
+ * whether the process should continue to run as long as files are being watched.
3195
+ * The `options` object may specify an `interval` property indicating how often the
3196
+ * target should be polled in milliseconds.
3197
+ *
3198
+ * The `listener` gets two arguments the current stat object and the previous
3199
+ * stat object:
3200
+ *
3201
+ * ```js
3202
+ * import { watchFile } from 'fs';
3203
+ *
3204
+ * watchFile('message.text', (curr, prev) => {
3205
+ * console.log(`the current mtime is: ${curr.mtime}`);
3206
+ * console.log(`the previous mtime was: ${prev.mtime}`);
3207
+ * });
3208
+ * ```
3209
+ *
3210
+ * These stat objects are instances of `fs.Stat`. If the `bigint` option is `true`,
3211
+ * the numeric values in these objects are specified as `BigInt`s.
3212
+ *
3213
+ * To be notified when the file was modified, not just accessed, it is necessary
3214
+ * to compare `curr.mtimeMs` and `prev.mtimeMs`.
3215
+ *
3216
+ * When an `fs.watchFile` operation results in an `ENOENT` error, it
3217
+ * will invoke the listener once, with all the fields zeroed (or, for dates, the
3218
+ * Unix Epoch). If the file is created later on, the listener will be called
3219
+ * again, with the latest stat objects. This is a change in functionality since
3220
+ * v0.10.
3221
+ *
3222
+ * Using {@link watch} is more efficient than `fs.watchFile` and `fs.unwatchFile`. `fs.watch` should be used instead of `fs.watchFile` and `fs.unwatchFile` when possible.
3223
+ *
3224
+ * When a file being watched by `fs.watchFile()` disappears and reappears,
3225
+ * then the contents of `previous` in the second callback event (the file's
3226
+ * reappearance) will be the same as the contents of `previous` in the first
3227
+ * callback event (its disappearance).
3228
+ *
3229
+ * This happens when:
3230
+ *
3231
+ * * the file is deleted, followed by a restore
3232
+ * * the file is renamed and then renamed a second time back to its original name
3233
+ * @since v0.1.31
3234
+ */
3235
+ export interface WatchFileOptions {
3236
+ bigint?: boolean | undefined;
3237
+ persistent?: boolean | undefined;
3238
+ interval?: number | undefined;
3239
+ }
3240
+ /**
3241
+ * Watch for changes on `filename`. The callback `listener` will be called each
3242
+ * time the file is accessed.
3243
+ *
3244
+ * The `options` argument may be omitted. If provided, it should be an object. The `options` object may contain a boolean named `persistent` that indicates
3245
+ * whether the process should continue to run as long as files are being watched.
3246
+ * The `options` object may specify an `interval` property indicating how often the
3247
+ * target should be polled in milliseconds.
3248
+ *
3249
+ * The `listener` gets two arguments the current stat object and the previous
3250
+ * stat object:
3251
+ *
3252
+ * ```js
3253
+ * import { watchFile } from 'node:fs';
3254
+ *
3255
+ * watchFile('message.text', (curr, prev) => {
3256
+ * console.log(`the current mtime is: ${curr.mtime}`);
3257
+ * console.log(`the previous mtime was: ${prev.mtime}`);
3258
+ * });
3259
+ * ```
3260
+ *
3261
+ * These stat objects are instances of `fs.Stat`. If the `bigint` option is `true`,
3262
+ * the numeric values in these objects are specified as `BigInt`s.
3263
+ *
3264
+ * To be notified when the file was modified, not just accessed, it is necessary
3265
+ * to compare `curr.mtimeMs` and `prev.mtimeMs`.
3266
+ *
3267
+ * When an `fs.watchFile` operation results in an `ENOENT` error, it
3268
+ * will invoke the listener once, with all the fields zeroed (or, for dates, the
3269
+ * Unix Epoch). If the file is created later on, the listener will be called
3270
+ * again, with the latest stat objects. This is a change in functionality since
3271
+ * v0.10.
3272
+ *
3273
+ * Using {@link watch} is more efficient than `fs.watchFile` and `fs.unwatchFile`. `fs.watch` should be used instead of `fs.watchFile` and `fs.unwatchFile` when possible.
3274
+ *
3275
+ * When a file being watched by `fs.watchFile()` disappears and reappears,
3276
+ * then the contents of `previous` in the second callback event (the file's
3277
+ * reappearance) will be the same as the contents of `previous` in the first
3278
+ * callback event (its disappearance).
3279
+ *
3280
+ * This happens when:
3281
+ *
3282
+ * * the file is deleted, followed by a restore
3283
+ * * the file is renamed and then renamed a second time back to its original name
3284
+ * @since v0.1.31
3285
+ */
3286
+ export function watchFile(
3287
+ filename: PathLike,
3288
+ options:
3289
+ | (WatchFileOptions & {
3290
+ bigint?: false | undefined;
3291
+ })
3292
+ | undefined,
3293
+ listener: StatsListener,
3294
+ ): StatWatcher;
3295
+ export function watchFile(
3296
+ filename: PathLike,
3297
+ options:
3298
+ | (WatchFileOptions & {
3299
+ bigint: true;
3300
+ })
3301
+ | undefined,
3302
+ listener: BigIntStatsListener,
3303
+ ): StatWatcher;
3304
+ /**
3305
+ * Watch for changes on `filename`. The callback `listener` will be called each time the file is accessed.
3306
+ * @param filename A path to a file or directory. If a URL is provided, it must use the `file:` protocol.
3307
+ */
3308
+ export function watchFile(filename: PathLike, listener: StatsListener): StatWatcher;
3309
+ /**
3310
+ * Stop watching for changes on `filename`. If `listener` is specified, only that
3311
+ * particular listener is removed. Otherwise, _all_ listeners are removed,
3312
+ * effectively stopping watching of `filename`.
3313
+ *
3314
+ * Calling `fs.unwatchFile()` with a filename that is not being watched is a
3315
+ * no-op, not an error.
3316
+ *
3317
+ * Using {@link watch} is more efficient than `fs.watchFile()` and `fs.unwatchFile()`. `fs.watch()` should be used instead of `fs.watchFile()` and `fs.unwatchFile()` when possible.
3318
+ * @since v0.1.31
3319
+ * @param listener Optional, a listener previously attached using `fs.watchFile()`
3320
+ */
3321
+ export function unwatchFile(filename: PathLike, listener?: StatsListener): void;
3322
+ export function unwatchFile(filename: PathLike, listener?: BigIntStatsListener): void;
3323
+ export interface WatchOptions extends Abortable {
3324
+ encoding?: BufferEncoding | "buffer" | undefined;
3325
+ persistent?: boolean | undefined;
3326
+ recursive?: boolean | undefined;
3327
+ }
3328
+ export type WatchEventType = "rename" | "change";
3329
+ export type WatchListener<T> = (event: WatchEventType, filename: T | null) => void;
3330
+ export type StatsListener = (curr: Stats, prev: Stats) => void;
3331
+ export type BigIntStatsListener = (curr: BigIntStats, prev: BigIntStats) => void;
3332
+ /**
3333
+ * Watch for changes on `filename`, where `filename` is either a file or a
3334
+ * directory.
3335
+ *
3336
+ * The second argument is optional. If `options` is provided as a string, it
3337
+ * specifies the `encoding`. Otherwise `options` should be passed as an object.
3338
+ *
3339
+ * The listener callback gets two arguments `(eventType, filename)`. `eventType`is either `'rename'` or `'change'`, and `filename` is the name of the file
3340
+ * which triggered the event.
3341
+ *
3342
+ * On most platforms, `'rename'` is emitted whenever a filename appears or
3343
+ * disappears in the directory.
3344
+ *
3345
+ * The listener callback is attached to the `'change'` event fired by `fs.FSWatcher`, but it is not the same thing as the `'change'` value of `eventType`.
3346
+ *
3347
+ * If a `signal` is passed, aborting the corresponding AbortController will close
3348
+ * the returned `fs.FSWatcher`.
3349
+ * @since v0.5.10
3350
+ * @param listener
3351
+ */
3352
+ export function watch(
3353
+ filename: PathLike,
3354
+ options:
3355
+ | (WatchOptions & {
3356
+ encoding: "buffer";
3357
+ })
3358
+ | "buffer",
3359
+ listener?: WatchListener<Buffer>,
3360
+ ): FSWatcher;
3361
+ /**
3362
+ * Watch for changes on `filename`, where `filename` is either a file or a directory, returning an `FSWatcher`.
3363
+ * @param filename A path to a file or directory. If a URL is provided, it must use the `file:` protocol.
3364
+ * @param options Either the encoding for the filename provided to the listener, or an object optionally specifying encoding, persistent, and recursive options.
3365
+ * If `encoding` is not supplied, the default of `'utf8'` is used.
3366
+ * If `persistent` is not supplied, the default of `true` is used.
3367
+ * If `recursive` is not supplied, the default of `false` is used.
3368
+ */
3369
+ export function watch(
3370
+ filename: PathLike,
3371
+ options?: WatchOptions | BufferEncoding | null,
3372
+ listener?: WatchListener<string>,
3373
+ ): FSWatcher;
3374
+ /**
3375
+ * Watch for changes on `filename`, where `filename` is either a file or a directory, returning an `FSWatcher`.
3376
+ * @param filename A path to a file or directory. If a URL is provided, it must use the `file:` protocol.
3377
+ * @param options Either the encoding for the filename provided to the listener, or an object optionally specifying encoding, persistent, and recursive options.
3378
+ * If `encoding` is not supplied, the default of `'utf8'` is used.
3379
+ * If `persistent` is not supplied, the default of `true` is used.
3380
+ * If `recursive` is not supplied, the default of `false` is used.
3381
+ */
3382
+ export function watch(
3383
+ filename: PathLike,
3384
+ options: WatchOptions | string,
3385
+ listener?: WatchListener<string | Buffer>,
3386
+ ): FSWatcher;
3387
+ /**
3388
+ * Watch for changes on `filename`, where `filename` is either a file or a directory, returning an `FSWatcher`.
3389
+ * @param filename A path to a file or directory. If a URL is provided, it must use the `file:` protocol.
3390
+ */
3391
+ export function watch(filename: PathLike, listener?: WatchListener<string>): FSWatcher;
3392
+ /**
3393
+ * Test whether or not the given path exists by checking with the file system.
3394
+ * Then call the `callback` argument with either true or false:
3395
+ *
3396
+ * ```js
3397
+ * import { exists } from 'node:fs';
3398
+ *
3399
+ * exists('/etc/passwd', (e) => {
3400
+ * console.log(e ? 'it exists' : 'no passwd!');
3401
+ * });
3402
+ * ```
3403
+ *
3404
+ * **The parameters for this callback are not consistent with other Node.js**
3405
+ * **callbacks.** Normally, the first parameter to a Node.js callback is an `err` parameter, optionally followed by other parameters. The `fs.exists()` callback
3406
+ * has only one boolean parameter. This is one reason `fs.access()` is recommended
3407
+ * instead of `fs.exists()`.
3408
+ *
3409
+ * Using `fs.exists()` to check for the existence of a file before calling `fs.open()`, `fs.readFile()`, or `fs.writeFile()` is not recommended. Doing
3410
+ * so introduces a race condition, since other processes may change the file's
3411
+ * state between the two calls. Instead, user code should open/read/write the
3412
+ * file directly and handle the error raised if the file does not exist.
3413
+ *
3414
+ * **write (NOT RECOMMENDED)**
3415
+ *
3416
+ * ```js
3417
+ * import { exists, open, close } from 'node:fs';
3418
+ *
3419
+ * exists('myfile', (e) => {
3420
+ * if (e) {
3421
+ * console.error('myfile already exists');
3422
+ * } else {
3423
+ * open('myfile', 'wx', (err, fd) => {
3424
+ * if (err) throw err;
3425
+ *
3426
+ * try {
3427
+ * writeMyData(fd);
3428
+ * } finally {
3429
+ * close(fd, (err) => {
3430
+ * if (err) throw err;
3431
+ * });
3432
+ * }
3433
+ * });
3434
+ * }
3435
+ * });
3436
+ * ```
3437
+ *
3438
+ * **write (RECOMMENDED)**
3439
+ *
3440
+ * ```js
3441
+ * import { open, close } from 'node:fs';
3442
+ * open('myfile', 'wx', (err, fd) => {
3443
+ * if (err) {
3444
+ * if (err.code === 'EEXIST') {
3445
+ * console.error('myfile already exists');
3446
+ * return;
3447
+ * }
3448
+ *
3449
+ * throw err;
3450
+ * }
3451
+ *
3452
+ * try {
3453
+ * writeMyData(fd);
3454
+ * } finally {
3455
+ * close(fd, (err) => {
3456
+ * if (err) throw err;
3457
+ * });
3458
+ * }
3459
+ * });
3460
+ * ```
3461
+ *
3462
+ * **read (NOT RECOMMENDED)**
3463
+ *
3464
+ * ```js
3465
+ * import { open, close, exists } from 'node:fs';
3466
+ *
3467
+ * exists('myfile', (e) => {
3468
+ * if (e) {
3469
+ * open('myfile', 'r', (err, fd) => {
3470
+ * if (err) throw err;
3471
+ *
3472
+ * try {
3473
+ * readMyData(fd);
3474
+ * } finally {
3475
+ * close(fd, (err) => {
3476
+ * if (err) throw err;
3477
+ * });
3478
+ * }
3479
+ * });
3480
+ * } else {
3481
+ * console.error('myfile does not exist');
3482
+ * }
3483
+ * });
3484
+ * ```
3485
+ *
3486
+ * **read (RECOMMENDED)**
3487
+ *
3488
+ * ```js
3489
+ * import { open, close } from 'node:fs';
3490
+ *
3491
+ * open('myfile', 'r', (err, fd) => {
3492
+ * if (err) {
3493
+ * if (err.code === 'ENOENT') {
3494
+ * console.error('myfile does not exist');
3495
+ * return;
3496
+ * }
3497
+ *
3498
+ * throw err;
3499
+ * }
3500
+ *
3501
+ * try {
3502
+ * readMyData(fd);
3503
+ * } finally {
3504
+ * close(fd, (err) => {
3505
+ * if (err) throw err;
3506
+ * });
3507
+ * }
3508
+ * });
3509
+ * ```
3510
+ *
3511
+ * The "not recommended" examples above check for existence and then use the
3512
+ * file; the "recommended" examples are better because they use the file directly
3513
+ * and handle the error, if any.
3514
+ *
3515
+ * In general, check for the existence of a file only if the file won't be
3516
+ * used directly, for example when its existence is a signal from another
3517
+ * process.
3518
+ * @since v0.0.2
3519
+ * @deprecated Since v1.0.0 - Use {@link stat} or {@link access} instead.
3520
+ */
3521
+ export function exists(path: PathLike, callback: (exists: boolean) => void): void;
3522
+ /** @deprecated */
3523
+ export namespace exists {
3524
+ /**
3525
+ * @param path A path to a file or directory. If a URL is provided, it must use the `file:` protocol.
3526
+ * URL support is _experimental_.
3527
+ */
3528
+ function __promisify__(path: PathLike): Promise<boolean>;
3529
+ }
3530
+ /**
3531
+ * Returns `true` if the path exists, `false` otherwise.
3532
+ *
3533
+ * For detailed information, see the documentation of the asynchronous version of
3534
+ * this API: {@link exists}.
3535
+ *
3536
+ * `fs.exists()` is deprecated, but `fs.existsSync()` is not. The `callback` parameter to `fs.exists()` accepts parameters that are inconsistent with other
3537
+ * Node.js callbacks. `fs.existsSync()` does not use a callback.
3538
+ *
3539
+ * ```js
3540
+ * import { existsSync } from 'node:fs';
3541
+ *
3542
+ * if (existsSync('/etc/passwd'))
3543
+ * console.log('The path exists.');
3544
+ * ```
3545
+ * @since v0.1.21
3546
+ */
3547
+ export function existsSync(path: PathLike): boolean;
3548
+ export namespace constants {
3549
+ // File Access Constants
3550
+ /** Constant for fs.access(). File is visible to the calling process. */
3551
+ const F_OK: number;
3552
+ /** Constant for fs.access(). File can be read by the calling process. */
3553
+ const R_OK: number;
3554
+ /** Constant for fs.access(). File can be written by the calling process. */
3555
+ const W_OK: number;
3556
+ /** Constant for fs.access(). File can be executed by the calling process. */
3557
+ const X_OK: number;
3558
+ // File Copy Constants
3559
+ /** Constant for fs.copyFile. Flag indicating the destination file should not be overwritten if it already exists. */
3560
+ const COPYFILE_EXCL: number;
3561
+ /**
3562
+ * Constant for fs.copyFile. copy operation will attempt to create a copy-on-write reflink.
3563
+ * If the underlying platform does not support copy-on-write, then a fallback copy mechanism is used.
3564
+ */
3565
+ const COPYFILE_FICLONE: number;
3566
+ /**
3567
+ * Constant for fs.copyFile. Copy operation will attempt to create a copy-on-write reflink.
3568
+ * If the underlying platform does not support copy-on-write, then the operation will fail with an error.
3569
+ */
3570
+ const COPYFILE_FICLONE_FORCE: number;
3571
+ // File Open Constants
3572
+ /** Constant for fs.open(). Flag indicating to open a file for read-only access. */
3573
+ const O_RDONLY: number;
3574
+ /** Constant for fs.open(). Flag indicating to open a file for write-only access. */
3575
+ const O_WRONLY: number;
3576
+ /** Constant for fs.open(). Flag indicating to open a file for read-write access. */
3577
+ const O_RDWR: number;
3578
+ /** Constant for fs.open(). Flag indicating to create the file if it does not already exist. */
3579
+ const O_CREAT: number;
3580
+ /** Constant for fs.open(). Flag indicating that opening a file should fail if the O_CREAT flag is set and the file already exists. */
3581
+ const O_EXCL: number;
3582
+ /**
3583
+ * Constant for fs.open(). Flag indicating that if path identifies a terminal device,
3584
+ * opening the path shall not cause that terminal to become the controlling terminal for the process
3585
+ * (if the process does not already have one).
3586
+ */
3587
+ const O_NOCTTY: number;
3588
+ /** Constant for fs.open(). Flag indicating that if the file exists and is a regular file, and the file is opened successfully for write access, its length shall be truncated to zero. */
3589
+ const O_TRUNC: number;
3590
+ /** Constant for fs.open(). Flag indicating that data will be appended to the end of the file. */
3591
+ const O_APPEND: number;
3592
+ /** Constant for fs.open(). Flag indicating that the open should fail if the path is not a directory. */
3593
+ const O_DIRECTORY: number;
3594
+ /**
3595
+ * constant for fs.open().
3596
+ * Flag indicating reading accesses to the file system will no longer result in
3597
+ * an update to the atime information associated with the file.
3598
+ * This flag is available on Linux operating systems only.
3599
+ */
3600
+ const O_NOATIME: number;
3601
+ /** Constant for fs.open(). Flag indicating that the open should fail if the path is a symbolic link. */
3602
+ const O_NOFOLLOW: number;
3603
+ /** Constant for fs.open(). Flag indicating that the file is opened for synchronous I/O. */
3604
+ const O_SYNC: number;
3605
+ /** Constant for fs.open(). Flag indicating that the file is opened for synchronous I/O with write operations waiting for data integrity. */
3606
+ const O_DSYNC: number;
3607
+ /** Constant for fs.open(). Flag indicating to open the symbolic link itself rather than the resource it is pointing to. */
3608
+ const O_SYMLINK: number;
3609
+ /** Constant for fs.open(). When set, an attempt will be made to minimize caching effects of file I/O. */
3610
+ const O_DIRECT: number;
3611
+ /** Constant for fs.open(). Flag indicating to open the file in nonblocking mode when possible. */
3612
+ const O_NONBLOCK: number;
3613
+ // File Type Constants
3614
+ /** Constant for fs.Stats mode property for determining a file's type. Bit mask used to extract the file type code. */
3615
+ const S_IFMT: number;
3616
+ /** Constant for fs.Stats mode property for determining a file's type. File type constant for a regular file. */
3617
+ const S_IFREG: number;
3618
+ /** Constant for fs.Stats mode property for determining a file's type. File type constant for a directory. */
3619
+ const S_IFDIR: number;
3620
+ /** Constant for fs.Stats mode property for determining a file's type. File type constant for a character-oriented device file. */
3621
+ const S_IFCHR: number;
3622
+ /** Constant for fs.Stats mode property for determining a file's type. File type constant for a block-oriented device file. */
3623
+ const S_IFBLK: number;
3624
+ /** Constant for fs.Stats mode property for determining a file's type. File type constant for a FIFO/pipe. */
3625
+ const S_IFIFO: number;
3626
+ /** Constant for fs.Stats mode property for determining a file's type. File type constant for a symbolic link. */
3627
+ const S_IFLNK: number;
3628
+ /** Constant for fs.Stats mode property for determining a file's type. File type constant for a socket. */
3629
+ const S_IFSOCK: number;
3630
+ // File Mode Constants
3631
+ /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable, writable and executable by owner. */
3632
+ const S_IRWXU: number;
3633
+ /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable by owner. */
3634
+ const S_IRUSR: number;
3635
+ /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating writable by owner. */
3636
+ const S_IWUSR: number;
3637
+ /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating executable by owner. */
3638
+ const S_IXUSR: number;
3639
+ /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable, writable and executable by group. */
3640
+ const S_IRWXG: number;
3641
+ /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable by group. */
3642
+ const S_IRGRP: number;
3643
+ /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating writable by group. */
3644
+ const S_IWGRP: number;
3645
+ /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating executable by group. */
3646
+ const S_IXGRP: number;
3647
+ /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable, writable and executable by others. */
3648
+ const S_IRWXO: number;
3649
+ /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating readable by others. */
3650
+ const S_IROTH: number;
3651
+ /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating writable by others. */
3652
+ const S_IWOTH: number;
3653
+ /** Constant for fs.Stats mode property for determining access permissions for a file. File mode indicating executable by others. */
3654
+ const S_IXOTH: number;
3655
+ /**
3656
+ * When set, a memory file mapping is used to access the file. This flag
3657
+ * is available on Windows operating systems only. On other operating systems,
3658
+ * this flag is ignored.
3659
+ */
3660
+ const UV_FS_O_FILEMAP: number;
3661
+ }
3662
+ /**
3663
+ * Tests a user's permissions for the file or directory specified by `path`.
3664
+ * The `mode` argument is an optional integer that specifies the accessibility
3665
+ * checks to be performed. `mode` should be either the value `fs.constants.F_OK` or a mask consisting of the bitwise OR of any of `fs.constants.R_OK`, `fs.constants.W_OK`, and `fs.constants.X_OK`
3666
+ * (e.g.`fs.constants.W_OK | fs.constants.R_OK`). Check `File access constants` for
3667
+ * possible values of `mode`.
3668
+ *
3669
+ * The final argument, `callback`, is a callback function that is invoked with
3670
+ * a possible error argument. If any of the accessibility checks fail, the error
3671
+ * argument will be an `Error` object. The following examples check if `package.json` exists, and if it is readable or writable.
3672
+ *
3673
+ * ```js
3674
+ * import { access, constants } from 'node:fs';
3675
+ *
3676
+ * const file = 'package.json';
3677
+ *
3678
+ * // Check if the file exists in the current directory.
3679
+ * access(file, constants.F_OK, (err) => {
3680
+ * console.log(`${file} ${err ? 'does not exist' : 'exists'}`);
3681
+ * });
3682
+ *
3683
+ * // Check if the file is readable.
3684
+ * access(file, constants.R_OK, (err) => {
3685
+ * console.log(`${file} ${err ? 'is not readable' : 'is readable'}`);
3686
+ * });
3687
+ *
3688
+ * // Check if the file is writable.
3689
+ * access(file, constants.W_OK, (err) => {
3690
+ * console.log(`${file} ${err ? 'is not writable' : 'is writable'}`);
3691
+ * });
3692
+ *
3693
+ * // Check if the file is readable and writable.
3694
+ * access(file, constants.R_OK | constants.W_OK, (err) => {
3695
+ * console.log(`${file} ${err ? 'is not' : 'is'} readable and writable`);
3696
+ * });
3697
+ * ```
3698
+ *
3699
+ * Do not use `fs.access()` to check for the accessibility of a file before calling `fs.open()`, `fs.readFile()`, or `fs.writeFile()`. Doing
3700
+ * so introduces a race condition, since other processes may change the file's
3701
+ * state between the two calls. Instead, user code should open/read/write the
3702
+ * file directly and handle the error raised if the file is not accessible.
3703
+ *
3704
+ * **write (NOT RECOMMENDED)**
3705
+ *
3706
+ * ```js
3707
+ * import { access, open, close } from 'node:fs';
3708
+ *
3709
+ * access('myfile', (err) => {
3710
+ * if (!err) {
3711
+ * console.error('myfile already exists');
3712
+ * return;
3713
+ * }
3714
+ *
3715
+ * open('myfile', 'wx', (err, fd) => {
3716
+ * if (err) throw err;
3717
+ *
3718
+ * try {
3719
+ * writeMyData(fd);
3720
+ * } finally {
3721
+ * close(fd, (err) => {
3722
+ * if (err) throw err;
3723
+ * });
3724
+ * }
3725
+ * });
3726
+ * });
3727
+ * ```
3728
+ *
3729
+ * **write (RECOMMENDED)**
3730
+ *
3731
+ * ```js
3732
+ * import { open, close } from 'node:fs';
3733
+ *
3734
+ * open('myfile', 'wx', (err, fd) => {
3735
+ * if (err) {
3736
+ * if (err.code === 'EEXIST') {
3737
+ * console.error('myfile already exists');
3738
+ * return;
3739
+ * }
3740
+ *
3741
+ * throw err;
3742
+ * }
3743
+ *
3744
+ * try {
3745
+ * writeMyData(fd);
3746
+ * } finally {
3747
+ * close(fd, (err) => {
3748
+ * if (err) throw err;
3749
+ * });
3750
+ * }
3751
+ * });
3752
+ * ```
3753
+ *
3754
+ * **read (NOT RECOMMENDED)**
3755
+ *
3756
+ * ```js
3757
+ * import { access, open, close } from 'node:fs';
3758
+ * access('myfile', (err) => {
3759
+ * if (err) {
3760
+ * if (err.code === 'ENOENT') {
3761
+ * console.error('myfile does not exist');
3762
+ * return;
3763
+ * }
3764
+ *
3765
+ * throw err;
3766
+ * }
3767
+ *
3768
+ * open('myfile', 'r', (err, fd) => {
3769
+ * if (err) throw err;
3770
+ *
3771
+ * try {
3772
+ * readMyData(fd);
3773
+ * } finally {
3774
+ * close(fd, (err) => {
3775
+ * if (err) throw err;
3776
+ * });
3777
+ * }
3778
+ * });
3779
+ * });
3780
+ * ```
3781
+ *
3782
+ * **read (RECOMMENDED)**
3783
+ *
3784
+ * ```js
3785
+ * import { open, close } from 'node:fs';
3786
+ *
3787
+ * open('myfile', 'r', (err, fd) => {
3788
+ * if (err) {
3789
+ * if (err.code === 'ENOENT') {
3790
+ * console.error('myfile does not exist');
3791
+ * return;
3792
+ * }
3793
+ *
3794
+ * throw err;
3795
+ * }
3796
+ *
3797
+ * try {
3798
+ * readMyData(fd);
3799
+ * } finally {
3800
+ * close(fd, (err) => {
3801
+ * if (err) throw err;
3802
+ * });
3803
+ * }
3804
+ * });
3805
+ * ```
3806
+ *
3807
+ * The "not recommended" examples above check for accessibility and then use the
3808
+ * file; the "recommended" examples are better because they use the file directly
3809
+ * and handle the error, if any.
3810
+ *
3811
+ * In general, check for the accessibility of a file only if the file will not be
3812
+ * used directly, for example when its accessibility is a signal from another
3813
+ * process.
3814
+ *
3815
+ * On Windows, access-control policies (ACLs) on a directory may limit access to
3816
+ * a file or directory. The `fs.access()` function, however, does not check the
3817
+ * ACL and therefore may report that a path is accessible even if the ACL restricts
3818
+ * the user from reading or writing to it.
3819
+ * @since v0.11.15
3820
+ * @param [mode=fs.constants.F_OK]
3821
+ */
3822
+ export function access(path: PathLike, mode: number | undefined, callback: NoParamCallback): void;
3823
+ /**
3824
+ * Asynchronously tests a user's permissions for the file specified by path.
3825
+ * @param path A path to a file or directory. If a URL is provided, it must use the `file:` protocol.
3826
+ */
3827
+ export function access(path: PathLike, callback: NoParamCallback): void;
3828
+ export namespace access {
3829
+ /**
3830
+ * Asynchronously tests a user's permissions for the file specified by path.
3831
+ * @param path A path to a file or directory. If a URL is provided, it must use the `file:` protocol.
3832
+ * URL support is _experimental_.
3833
+ */
3834
+ function __promisify__(path: PathLike, mode?: number): Promise<void>;
3835
+ }
3836
+ /**
3837
+ * Synchronously tests a user's permissions for the file or directory specified
3838
+ * by `path`. The `mode` argument is an optional integer that specifies the
3839
+ * accessibility checks to be performed. `mode` should be either the value `fs.constants.F_OK` or a mask consisting of the bitwise OR of any of `fs.constants.R_OK`, `fs.constants.W_OK`, and
3840
+ * `fs.constants.X_OK` (e.g.`fs.constants.W_OK | fs.constants.R_OK`). Check `File access constants` for
3841
+ * possible values of `mode`.
3842
+ *
3843
+ * If any of the accessibility checks fail, an `Error` will be thrown. Otherwise,
3844
+ * the method will return `undefined`.
3845
+ *
3846
+ * ```js
3847
+ * import { accessSync, constants } from 'node:fs';
3848
+ *
3849
+ * try {
3850
+ * accessSync('etc/passwd', constants.R_OK | constants.W_OK);
3851
+ * console.log('can read/write');
3852
+ * } catch (err) {
3853
+ * console.error('no access!');
3854
+ * }
3855
+ * ```
3856
+ * @since v0.11.15
3857
+ * @param [mode=fs.constants.F_OK]
3858
+ */
3859
+ export function accessSync(path: PathLike, mode?: number): void;
3860
+ interface StreamOptions {
3861
+ flags?: string | undefined;
3862
+ encoding?: BufferEncoding | undefined;
3863
+ fd?: number | promises.FileHandle | undefined;
3864
+ mode?: number | undefined;
3865
+ autoClose?: boolean | undefined;
3866
+ emitClose?: boolean | undefined;
3867
+ start?: number | undefined;
3868
+ signal?: AbortSignal | null | undefined;
3869
+ highWaterMark?: number | undefined;
3870
+ }
3871
+ interface FSImplementation {
3872
+ open?: (...args: any[]) => any;
3873
+ close?: (...args: any[]) => any;
3874
+ }
3875
+ interface CreateReadStreamFSImplementation extends FSImplementation {
3876
+ read: (...args: any[]) => any;
3877
+ }
3878
+ interface CreateWriteStreamFSImplementation extends FSImplementation {
3879
+ write: (...args: any[]) => any;
3880
+ writev?: (...args: any[]) => any;
3881
+ }
3882
+ interface ReadStreamOptions extends StreamOptions {
3883
+ fs?: CreateReadStreamFSImplementation | null | undefined;
3884
+ end?: number | undefined;
3885
+ }
3886
+ interface WriteStreamOptions extends StreamOptions {
3887
+ fs?: CreateWriteStreamFSImplementation | null | undefined;
3888
+ flush?: boolean | undefined;
3889
+ }
3890
+ /**
3891
+ * Unlike the 16 KiB default `highWaterMark` for a `stream.Readable`, the stream
3892
+ * returned by this method has a default `highWaterMark` of 64 KiB.
3893
+ *
3894
+ * `options` can include `start` and `end` values to read a range of bytes from
3895
+ * the file instead of the entire file. Both `start` and `end` are inclusive and
3896
+ * start counting at 0, allowed values are in the
3897
+ * \[0, [`Number.MAX_SAFE_INTEGER`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER)\] range. If `fd` is specified and `start` is
3898
+ * omitted or `undefined`, `fs.createReadStream()` reads sequentially from the
3899
+ * current file position. The `encoding` can be any one of those accepted by `Buffer`.
3900
+ *
3901
+ * If `fd` is specified, `ReadStream` will ignore the `path` argument and will use
3902
+ * the specified file descriptor. This means that no `'open'` event will be
3903
+ * emitted. `fd` should be blocking; non-blocking `fd`s should be passed to `net.Socket`.
3904
+ *
3905
+ * If `fd` points to a character device that only supports blocking reads
3906
+ * (such as keyboard or sound card), read operations do not finish until data is
3907
+ * available. This can prevent the process from exiting and the stream from
3908
+ * closing naturally.
3909
+ *
3910
+ * By default, the stream will emit a `'close'` event after it has been
3911
+ * destroyed. Set the `emitClose` option to `false` to change this behavior.
3912
+ *
3913
+ * By providing the `fs` option, it is possible to override the corresponding `fs` implementations for `open`, `read`, and `close`. When providing the `fs` option,
3914
+ * an override for `read` is required. If no `fd` is provided, an override for `open` is also required. If `autoClose` is `true`, an override for `close` is
3915
+ * also required.
3916
+ *
3917
+ * ```js
3918
+ * import { createReadStream } from 'node:fs';
3919
+ *
3920
+ * // Create a stream from some character device.
3921
+ * const stream = createReadStream('/dev/input/event0');
3922
+ * setTimeout(() => {
3923
+ * stream.close(); // This may not close the stream.
3924
+ * // Artificially marking end-of-stream, as if the underlying resource had
3925
+ * // indicated end-of-file by itself, allows the stream to close.
3926
+ * // This does not cancel pending read operations, and if there is such an
3927
+ * // operation, the process may still not be able to exit successfully
3928
+ * // until it finishes.
3929
+ * stream.push(null);
3930
+ * stream.read(0);
3931
+ * }, 100);
3932
+ * ```
3933
+ *
3934
+ * If `autoClose` is false, then the file descriptor won't be closed, even if
3935
+ * there's an error. It is the application's responsibility to close it and make
3936
+ * sure there's no file descriptor leak. If `autoClose` is set to true (default
3937
+ * behavior), on `'error'` or `'end'` the file descriptor will be closed
3938
+ * automatically.
3939
+ *
3940
+ * `mode` sets the file mode (permission and sticky bits), but only if the
3941
+ * file was created.
3942
+ *
3943
+ * An example to read the last 10 bytes of a file which is 100 bytes long:
3944
+ *
3945
+ * ```js
3946
+ * import { createReadStream } from 'node:fs';
3947
+ *
3948
+ * createReadStream('sample.txt', { start: 90, end: 99 });
3949
+ * ```
3950
+ *
3951
+ * If `options` is a string, then it specifies the encoding.
3952
+ * @since v0.1.31
3953
+ */
3954
+ export function createReadStream(path: PathLike, options?: BufferEncoding | ReadStreamOptions): ReadStream;
3955
+ /**
3956
+ * `options` may also include a `start` option to allow writing data at some
3957
+ * position past the beginning of the file, allowed values are in the
3958
+ * \[0, [`Number.MAX_SAFE_INTEGER`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/MAX_SAFE_INTEGER)\] range. Modifying a file rather than
3959
+ * replacing it may require the `flags` option to be set to `r+` rather than the
3960
+ * default `w`. The `encoding` can be any one of those accepted by `Buffer`.
3961
+ *
3962
+ * If `autoClose` is set to true (default behavior) on `'error'` or `'finish'` the file descriptor will be closed automatically. If `autoClose` is false,
3963
+ * then the file descriptor won't be closed, even if there's an error.
3964
+ * It is the application's responsibility to close it and make sure there's no
3965
+ * file descriptor leak.
3966
+ *
3967
+ * By default, the stream will emit a `'close'` event after it has been
3968
+ * destroyed. Set the `emitClose` option to `false` to change this behavior.
3969
+ *
3970
+ * By providing the `fs` option it is possible to override the corresponding `fs` implementations for `open`, `write`, `writev`, and `close`. Overriding `write()` without `writev()` can reduce
3971
+ * performance as some optimizations (`_writev()`)
3972
+ * will be disabled. When providing the `fs` option, overrides for at least one of `write` and `writev` are required. If no `fd` option is supplied, an override
3973
+ * for `open` is also required. If `autoClose` is `true`, an override for `close` is also required.
3974
+ *
3975
+ * Like `fs.ReadStream`, if `fd` is specified, `fs.WriteStream` will ignore the `path` argument and will use the specified file descriptor. This means that no `'open'` event will be
3976
+ * emitted. `fd` should be blocking; non-blocking `fd`s
3977
+ * should be passed to `net.Socket`.
3978
+ *
3979
+ * If `options` is a string, then it specifies the encoding.
3980
+ * @since v0.1.31
3981
+ */
3982
+ export function createWriteStream(path: PathLike, options?: BufferEncoding | WriteStreamOptions): WriteStream;
3983
+ /**
3984
+ * Forces all currently queued I/O operations associated with the file to the
3985
+ * operating system's synchronized I/O completion state. Refer to the POSIX [`fdatasync(2)`](http://man7.org/linux/man-pages/man2/fdatasync.2.html) documentation for details. No arguments other
3986
+ * than a possible
3987
+ * exception are given to the completion callback.
3988
+ * @since v0.1.96
3989
+ */
3990
+ export function fdatasync(fd: number, callback: NoParamCallback): void;
3991
+ export namespace fdatasync {
3992
+ /**
3993
+ * Asynchronous fdatasync(2) - synchronize a file's in-core state with storage device.
3994
+ * @param fd A file descriptor.
3995
+ */
3996
+ function __promisify__(fd: number): Promise<void>;
3997
+ }
3998
+ /**
3999
+ * Forces all currently queued I/O operations associated with the file to the
4000
+ * operating system's synchronized I/O completion state. Refer to the POSIX [`fdatasync(2)`](http://man7.org/linux/man-pages/man2/fdatasync.2.html) documentation for details. Returns `undefined`.
4001
+ * @since v0.1.96
4002
+ */
4003
+ export function fdatasyncSync(fd: number): void;
4004
+ /**
4005
+ * Asynchronously copies `src` to `dest`. By default, `dest` is overwritten if it
4006
+ * already exists. No arguments other than a possible exception are given to the
4007
+ * callback function. Node.js makes no guarantees about the atomicity of the copy
4008
+ * operation. If an error occurs after the destination file has been opened for
4009
+ * writing, Node.js will attempt to remove the destination.
4010
+ *
4011
+ * `mode` is an optional integer that specifies the behavior
4012
+ * of the copy operation. It is possible to create a mask consisting of the bitwise
4013
+ * OR of two or more values (e.g.`fs.constants.COPYFILE_EXCL | fs.constants.COPYFILE_FICLONE`).
4014
+ *
4015
+ * * `fs.constants.COPYFILE_EXCL`: The copy operation will fail if `dest` already
4016
+ * exists.
4017
+ * * `fs.constants.COPYFILE_FICLONE`: The copy operation will attempt to create a
4018
+ * copy-on-write reflink. If the platform does not support copy-on-write, then a
4019
+ * fallback copy mechanism is used.
4020
+ * * `fs.constants.COPYFILE_FICLONE_FORCE`: The copy operation will attempt to
4021
+ * create a copy-on-write reflink. If the platform does not support
4022
+ * copy-on-write, then the operation will fail.
4023
+ *
4024
+ * ```js
4025
+ * import { copyFile, constants } from 'node:fs';
4026
+ *
4027
+ * function callback(err) {
4028
+ * if (err) throw err;
4029
+ * console.log('source.txt was copied to destination.txt');
4030
+ * }
4031
+ *
4032
+ * // destination.txt will be created or overwritten by default.
4033
+ * copyFile('source.txt', 'destination.txt', callback);
4034
+ *
4035
+ * // By using COPYFILE_EXCL, the operation will fail if destination.txt exists.
4036
+ * copyFile('source.txt', 'destination.txt', constants.COPYFILE_EXCL, callback);
4037
+ * ```
4038
+ * @since v8.5.0
4039
+ * @param src source filename to copy
4040
+ * @param dest destination filename of the copy operation
4041
+ * @param [mode=0] modifiers for copy operation.
4042
+ */
4043
+ export function copyFile(src: PathLike, dest: PathLike, callback: NoParamCallback): void;
4044
+ export function copyFile(src: PathLike, dest: PathLike, mode: number, callback: NoParamCallback): void;
4045
+ export namespace copyFile {
4046
+ function __promisify__(src: PathLike, dst: PathLike, mode?: number): Promise<void>;
4047
+ }
4048
+ /**
4049
+ * Synchronously copies `src` to `dest`. By default, `dest` is overwritten if it
4050
+ * already exists. Returns `undefined`. Node.js makes no guarantees about the
4051
+ * atomicity of the copy operation. If an error occurs after the destination file
4052
+ * has been opened for writing, Node.js will attempt to remove the destination.
4053
+ *
4054
+ * `mode` is an optional integer that specifies the behavior
4055
+ * of the copy operation. It is possible to create a mask consisting of the bitwise
4056
+ * OR of two or more values (e.g.`fs.constants.COPYFILE_EXCL | fs.constants.COPYFILE_FICLONE`).
4057
+ *
4058
+ * * `fs.constants.COPYFILE_EXCL`: The copy operation will fail if `dest` already
4059
+ * exists.
4060
+ * * `fs.constants.COPYFILE_FICLONE`: The copy operation will attempt to create a
4061
+ * copy-on-write reflink. If the platform does not support copy-on-write, then a
4062
+ * fallback copy mechanism is used.
4063
+ * * `fs.constants.COPYFILE_FICLONE_FORCE`: The copy operation will attempt to
4064
+ * create a copy-on-write reflink. If the platform does not support
4065
+ * copy-on-write, then the operation will fail.
4066
+ *
4067
+ * ```js
4068
+ * import { copyFileSync, constants } from 'node:fs';
4069
+ *
4070
+ * // destination.txt will be created or overwritten by default.
4071
+ * copyFileSync('source.txt', 'destination.txt');
4072
+ * console.log('source.txt was copied to destination.txt');
4073
+ *
4074
+ * // By using COPYFILE_EXCL, the operation will fail if destination.txt exists.
4075
+ * copyFileSync('source.txt', 'destination.txt', constants.COPYFILE_EXCL);
4076
+ * ```
4077
+ * @since v8.5.0
4078
+ * @param src source filename to copy
4079
+ * @param dest destination filename of the copy operation
4080
+ * @param [mode=0] modifiers for copy operation.
4081
+ */
4082
+ export function copyFileSync(src: PathLike, dest: PathLike, mode?: number): void;
4083
+ /**
4084
+ * Write an array of `ArrayBufferView`s to the file specified by `fd` using `writev()`.
4085
+ *
4086
+ * `position` is the offset from the beginning of the file where this data
4087
+ * should be written. If `typeof position !== 'number'`, the data will be written
4088
+ * at the current position.
4089
+ *
4090
+ * The callback will be given three arguments: `err`, `bytesWritten`, and `buffers`. `bytesWritten` is how many bytes were written from `buffers`.
4091
+ *
4092
+ * If this method is `util.promisify()` ed, it returns a promise for an `Object` with `bytesWritten` and `buffers` properties.
4093
+ *
4094
+ * It is unsafe to use `fs.writev()` multiple times on the same file without
4095
+ * waiting for the callback. For this scenario, use {@link createWriteStream}.
4096
+ *
4097
+ * On Linux, positional writes don't work when the file is opened in append mode.
4098
+ * The kernel ignores the position argument and always appends the data to
4099
+ * the end of the file.
4100
+ * @since v12.9.0
4101
+ * @param [position='null']
4102
+ */
4103
+ export function writev(
4104
+ fd: number,
4105
+ buffers: readonly NodeJS.ArrayBufferView[],
4106
+ cb: (err: NodeJS.ErrnoException | null, bytesWritten: number, buffers: NodeJS.ArrayBufferView[]) => void,
4107
+ ): void;
4108
+ export function writev(
4109
+ fd: number,
4110
+ buffers: readonly NodeJS.ArrayBufferView[],
4111
+ position: number | null,
4112
+ cb: (err: NodeJS.ErrnoException | null, bytesWritten: number, buffers: NodeJS.ArrayBufferView[]) => void,
4113
+ ): void;
4114
+ export interface WriteVResult {
4115
+ bytesWritten: number;
4116
+ buffers: NodeJS.ArrayBufferView[];
4117
+ }
4118
+ export namespace writev {
4119
+ function __promisify__(
4120
+ fd: number,
4121
+ buffers: readonly NodeJS.ArrayBufferView[],
4122
+ position?: number,
4123
+ ): Promise<WriteVResult>;
4124
+ }
4125
+ /**
4126
+ * For detailed information, see the documentation of the asynchronous version of
4127
+ * this API: {@link writev}.
4128
+ * @since v12.9.0
4129
+ * @param [position='null']
4130
+ * @return The number of bytes written.
4131
+ */
4132
+ export function writevSync(fd: number, buffers: readonly NodeJS.ArrayBufferView[], position?: number): number;
4133
+ /**
4134
+ * Read from a file specified by `fd` and write to an array of `ArrayBufferView`s
4135
+ * using `readv()`.
4136
+ *
4137
+ * `position` is the offset from the beginning of the file from where data
4138
+ * should be read. If `typeof position !== 'number'`, the data will be read
4139
+ * from the current position.
4140
+ *
4141
+ * The callback will be given three arguments: `err`, `bytesRead`, and `buffers`. `bytesRead` is how many bytes were read from the file.
4142
+ *
4143
+ * If this method is invoked as its `util.promisify()` ed version, it returns
4144
+ * a promise for an `Object` with `bytesRead` and `buffers` properties.
4145
+ * @since v13.13.0, v12.17.0
4146
+ * @param [position='null']
4147
+ */
4148
+ export function readv(
4149
+ fd: number,
4150
+ buffers: readonly NodeJS.ArrayBufferView[],
4151
+ cb: (err: NodeJS.ErrnoException | null, bytesRead: number, buffers: NodeJS.ArrayBufferView[]) => void,
4152
+ ): void;
4153
+ export function readv(
4154
+ fd: number,
4155
+ buffers: readonly NodeJS.ArrayBufferView[],
4156
+ position: number | null,
4157
+ cb: (err: NodeJS.ErrnoException | null, bytesRead: number, buffers: NodeJS.ArrayBufferView[]) => void,
4158
+ ): void;
4159
+ export interface ReadVResult {
4160
+ bytesRead: number;
4161
+ buffers: NodeJS.ArrayBufferView[];
4162
+ }
4163
+ export namespace readv {
4164
+ function __promisify__(
4165
+ fd: number,
4166
+ buffers: readonly NodeJS.ArrayBufferView[],
4167
+ position?: number,
4168
+ ): Promise<ReadVResult>;
4169
+ }
4170
+ /**
4171
+ * For detailed information, see the documentation of the asynchronous version of
4172
+ * this API: {@link readv}.
4173
+ * @since v13.13.0, v12.17.0
4174
+ * @param [position='null']
4175
+ * @return The number of bytes read.
4176
+ */
4177
+ export function readvSync(fd: number, buffers: readonly NodeJS.ArrayBufferView[], position?: number): number;
4178
+
4179
+ export interface OpenAsBlobOptions {
4180
+ /**
4181
+ * An optional mime type for the blob.
4182
+ *
4183
+ * @default 'undefined'
4184
+ */
4185
+ type?: string | undefined;
4186
+ }
4187
+
4188
+ /**
4189
+ * Returns a `Blob` whose data is backed by the given file.
4190
+ *
4191
+ * The file must not be modified after the `Blob` is created. Any modifications
4192
+ * will cause reading the `Blob` data to fail with a `DOMException` error.
4193
+ * Synchronous stat operations on the file when the `Blob` is created, and before
4194
+ * each read in order to detect whether the file data has been modified on disk.
4195
+ *
4196
+ * ```js
4197
+ * import { openAsBlob } from 'node:fs';
4198
+ *
4199
+ * const blob = await openAsBlob('the.file.txt');
4200
+ * const ab = await blob.arrayBuffer();
4201
+ * blob.stream();
4202
+ * ```
4203
+ * @since v19.8.0
4204
+ * @experimental
4205
+ */
4206
+ export function openAsBlob(path: PathLike, options?: OpenAsBlobOptions): Promise<Blob>;
4207
+
4208
+ export interface OpenDirOptions {
4209
+ /**
4210
+ * @default 'utf8'
4211
+ */
4212
+ encoding?: BufferEncoding | undefined;
4213
+ /**
4214
+ * Number of directory entries that are buffered
4215
+ * internally when reading from the directory. Higher values lead to better
4216
+ * performance but higher memory usage.
4217
+ * @default 32
4218
+ */
4219
+ bufferSize?: number | undefined;
4220
+ /**
4221
+ * @default false
4222
+ */
4223
+ recursive?: boolean;
4224
+ }
4225
+ /**
4226
+ * Synchronously open a directory. See [`opendir(3)`](http://man7.org/linux/man-pages/man3/opendir.3.html).
4227
+ *
4228
+ * Creates an `fs.Dir`, which contains all further functions for reading from
4229
+ * and cleaning up the directory.
4230
+ *
4231
+ * The `encoding` option sets the encoding for the `path` while opening the
4232
+ * directory and subsequent read operations.
4233
+ * @since v12.12.0
4234
+ */
4235
+ export function opendirSync(path: PathLike, options?: OpenDirOptions): Dir;
4236
+ /**
4237
+ * Asynchronously open a directory. See the POSIX [`opendir(3)`](http://man7.org/linux/man-pages/man3/opendir.3.html) documentation for
4238
+ * more details.
4239
+ *
4240
+ * Creates an `fs.Dir`, which contains all further functions for reading from
4241
+ * and cleaning up the directory.
4242
+ *
4243
+ * The `encoding` option sets the encoding for the `path` while opening the
4244
+ * directory and subsequent read operations.
4245
+ * @since v12.12.0
4246
+ */
4247
+ export function opendir(path: PathLike, cb: (err: NodeJS.ErrnoException | null, dir: Dir) => void): void;
4248
+ export function opendir(
4249
+ path: PathLike,
4250
+ options: OpenDirOptions,
4251
+ cb: (err: NodeJS.ErrnoException | null, dir: Dir) => void,
4252
+ ): void;
4253
+ export namespace opendir {
4254
+ function __promisify__(path: PathLike, options?: OpenDirOptions): Promise<Dir>;
4255
+ }
4256
+ export interface BigIntStats extends StatsBase<bigint> {
4257
+ atimeNs: bigint;
4258
+ mtimeNs: bigint;
4259
+ ctimeNs: bigint;
4260
+ birthtimeNs: bigint;
4261
+ }
4262
+ export interface BigIntOptions {
4263
+ bigint: true;
4264
+ }
4265
+ export interface StatOptions {
4266
+ bigint?: boolean | undefined;
4267
+ }
4268
+ export interface StatSyncOptions extends StatOptions {
4269
+ throwIfNoEntry?: boolean | undefined;
4270
+ }
4271
+ interface CopyOptionsBase {
4272
+ /**
4273
+ * Dereference symlinks
4274
+ * @default false
4275
+ */
4276
+ dereference?: boolean;
4277
+ /**
4278
+ * When `force` is `false`, and the destination
4279
+ * exists, throw an error.
4280
+ * @default false
4281
+ */
4282
+ errorOnExist?: boolean;
4283
+ /**
4284
+ * Overwrite existing file or directory. _The copy
4285
+ * operation will ignore errors if you set this to false and the destination
4286
+ * exists. Use the `errorOnExist` option to change this behavior.
4287
+ * @default true
4288
+ */
4289
+ force?: boolean;
4290
+ /**
4291
+ * Modifiers for copy operation. See `mode` flag of {@link copyFileSync()}
4292
+ */
4293
+ mode?: number;
4294
+ /**
4295
+ * When `true` timestamps from `src` will
4296
+ * be preserved.
4297
+ * @default false
4298
+ */
4299
+ preserveTimestamps?: boolean;
4300
+ /**
4301
+ * Copy directories recursively.
4302
+ * @default false
4303
+ */
4304
+ recursive?: boolean;
4305
+ /**
4306
+ * When true, path resolution for symlinks will be skipped
4307
+ * @default false
4308
+ */
4309
+ verbatimSymlinks?: boolean;
4310
+ }
4311
+ export interface CopyOptions extends CopyOptionsBase {
4312
+ /**
4313
+ * Function to filter copied files/directories. Return
4314
+ * `true` to copy the item, `false` to ignore it.
4315
+ */
4316
+ filter?(source: string, destination: string): boolean | Promise<boolean>;
4317
+ }
4318
+ export interface CopySyncOptions extends CopyOptionsBase {
4319
+ /**
4320
+ * Function to filter copied files/directories. Return
4321
+ * `true` to copy the item, `false` to ignore it.
4322
+ */
4323
+ filter?(source: string, destination: string): boolean;
4324
+ }
4325
+ /**
4326
+ * Asynchronously copies the entire directory structure from `src` to `dest`,
4327
+ * including subdirectories and files.
4328
+ *
4329
+ * When copying a directory to another directory, globs are not supported and
4330
+ * behavior is similar to `cp dir1/ dir2/`.
4331
+ * @since v16.7.0
4332
+ * @experimental
4333
+ * @param src source path to copy.
4334
+ * @param dest destination path to copy to.
4335
+ */
4336
+ export function cp(
4337
+ source: string | URL,
4338
+ destination: string | URL,
4339
+ callback: (err: NodeJS.ErrnoException | null) => void,
4340
+ ): void;
4341
+ export function cp(
4342
+ source: string | URL,
4343
+ destination: string | URL,
4344
+ opts: CopyOptions,
4345
+ callback: (err: NodeJS.ErrnoException | null) => void,
4346
+ ): void;
4347
+ /**
4348
+ * Synchronously copies the entire directory structure from `src` to `dest`,
4349
+ * including subdirectories and files.
4350
+ *
4351
+ * When copying a directory to another directory, globs are not supported and
4352
+ * behavior is similar to `cp dir1/ dir2/`.
4353
+ * @since v16.7.0
4354
+ * @experimental
4355
+ * @param src source path to copy.
4356
+ * @param dest destination path to copy to.
4357
+ */
4358
+ export function cpSync(source: string | URL, destination: string | URL, opts?: CopySyncOptions): void;
4359
+ }
4360
+ declare module "node:fs" {
4361
+ export * from "fs";
4362
+ }