waves_lib 0.1.0

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 (1222) hide show
  1. checksums.yaml +7 -0
  2. data/.rspec +3 -0
  3. data/.rubocop.yml +22 -0
  4. data/CHANGELOG.md +5 -0
  5. data/CODE_OF_CONDUCT.md +84 -0
  6. data/LICENSE.txt +19 -0
  7. data/README.md +39 -0
  8. data/Rakefile +12 -0
  9. data/js/node_modules/@protobufjs/aspromise/LICENSE +26 -0
  10. data/js/node_modules/@protobufjs/aspromise/README.md +13 -0
  11. data/js/node_modules/@protobufjs/aspromise/index.d.ts +13 -0
  12. data/js/node_modules/@protobufjs/aspromise/index.js +52 -0
  13. data/js/node_modules/@protobufjs/aspromise/package.json +21 -0
  14. data/js/node_modules/@protobufjs/aspromise/tests/index.js +130 -0
  15. data/js/node_modules/@protobufjs/base64/LICENSE +26 -0
  16. data/js/node_modules/@protobufjs/base64/README.md +19 -0
  17. data/js/node_modules/@protobufjs/base64/index.d.ts +32 -0
  18. data/js/node_modules/@protobufjs/base64/index.js +139 -0
  19. data/js/node_modules/@protobufjs/base64/package.json +21 -0
  20. data/js/node_modules/@protobufjs/base64/tests/index.js +46 -0
  21. data/js/node_modules/@protobufjs/codegen/LICENSE +26 -0
  22. data/js/node_modules/@protobufjs/codegen/README.md +49 -0
  23. data/js/node_modules/@protobufjs/codegen/index.d.ts +31 -0
  24. data/js/node_modules/@protobufjs/codegen/index.js +99 -0
  25. data/js/node_modules/@protobufjs/codegen/package.json +13 -0
  26. data/js/node_modules/@protobufjs/codegen/tests/index.js +13 -0
  27. data/js/node_modules/@protobufjs/eventemitter/LICENSE +26 -0
  28. data/js/node_modules/@protobufjs/eventemitter/README.md +22 -0
  29. data/js/node_modules/@protobufjs/eventemitter/index.d.ts +43 -0
  30. data/js/node_modules/@protobufjs/eventemitter/index.js +76 -0
  31. data/js/node_modules/@protobufjs/eventemitter/package.json +21 -0
  32. data/js/node_modules/@protobufjs/eventemitter/tests/index.js +47 -0
  33. data/js/node_modules/@protobufjs/fetch/LICENSE +26 -0
  34. data/js/node_modules/@protobufjs/fetch/README.md +13 -0
  35. data/js/node_modules/@protobufjs/fetch/index.d.ts +56 -0
  36. data/js/node_modules/@protobufjs/fetch/index.js +115 -0
  37. data/js/node_modules/@protobufjs/fetch/package.json +25 -0
  38. data/js/node_modules/@protobufjs/fetch/tests/index.js +16 -0
  39. data/js/node_modules/@protobufjs/float/LICENSE +26 -0
  40. data/js/node_modules/@protobufjs/float/README.md +102 -0
  41. data/js/node_modules/@protobufjs/float/bench/index.js +87 -0
  42. data/js/node_modules/@protobufjs/float/bench/suite.js +46 -0
  43. data/js/node_modules/@protobufjs/float/index.d.ts +83 -0
  44. data/js/node_modules/@protobufjs/float/index.js +335 -0
  45. data/js/node_modules/@protobufjs/float/package.json +26 -0
  46. data/js/node_modules/@protobufjs/float/tests/index.js +100 -0
  47. data/js/node_modules/@protobufjs/inquire/LICENSE +26 -0
  48. data/js/node_modules/@protobufjs/inquire/README.md +13 -0
  49. data/js/node_modules/@protobufjs/inquire/index.d.ts +9 -0
  50. data/js/node_modules/@protobufjs/inquire/index.js +17 -0
  51. data/js/node_modules/@protobufjs/inquire/package.json +21 -0
  52. data/js/node_modules/@protobufjs/inquire/tests/data/array.js +1 -0
  53. data/js/node_modules/@protobufjs/inquire/tests/data/emptyArray.js +1 -0
  54. data/js/node_modules/@protobufjs/inquire/tests/data/emptyObject.js +1 -0
  55. data/js/node_modules/@protobufjs/inquire/tests/data/object.js +1 -0
  56. data/js/node_modules/@protobufjs/inquire/tests/index.js +20 -0
  57. data/js/node_modules/@protobufjs/path/LICENSE +26 -0
  58. data/js/node_modules/@protobufjs/path/README.md +19 -0
  59. data/js/node_modules/@protobufjs/path/index.d.ts +22 -0
  60. data/js/node_modules/@protobufjs/path/index.js +65 -0
  61. data/js/node_modules/@protobufjs/path/package.json +21 -0
  62. data/js/node_modules/@protobufjs/path/tests/index.js +60 -0
  63. data/js/node_modules/@protobufjs/pool/LICENSE +26 -0
  64. data/js/node_modules/@protobufjs/pool/README.md +13 -0
  65. data/js/node_modules/@protobufjs/pool/index.d.ts +32 -0
  66. data/js/node_modules/@protobufjs/pool/index.js +48 -0
  67. data/js/node_modules/@protobufjs/pool/package.json +21 -0
  68. data/js/node_modules/@protobufjs/pool/tests/index.js +33 -0
  69. data/js/node_modules/@protobufjs/utf8/LICENSE +26 -0
  70. data/js/node_modules/@protobufjs/utf8/README.md +20 -0
  71. data/js/node_modules/@protobufjs/utf8/index.d.ts +24 -0
  72. data/js/node_modules/@protobufjs/utf8/index.js +105 -0
  73. data/js/node_modules/@protobufjs/utf8/package.json +21 -0
  74. data/js/node_modules/@protobufjs/utf8/tests/data/utf8.txt +216 -0
  75. data/js/node_modules/@protobufjs/utf8/tests/index.js +57 -0
  76. data/js/node_modules/@types/base64-js/LICENSE +21 -0
  77. data/js/node_modules/@types/base64-js/README.md +16 -0
  78. data/js/node_modules/@types/base64-js/index.d.ts +23 -0
  79. data/js/node_modules/@types/base64-js/package.json +29 -0
  80. data/js/node_modules/@types/long/LICENSE +21 -0
  81. data/js/node_modules/@types/long/README.md +16 -0
  82. data/js/node_modules/@types/long/index.d.ts +389 -0
  83. data/js/node_modules/@types/long/package.json +25 -0
  84. data/js/node_modules/@types/node/LICENSE +21 -0
  85. data/js/node_modules/@types/node/README.md +16 -0
  86. data/js/node_modules/@types/node/assert/strict.d.ts +8 -0
  87. data/js/node_modules/@types/node/assert.d.ts +972 -0
  88. data/js/node_modules/@types/node/async_hooks.d.ts +530 -0
  89. data/js/node_modules/@types/node/buffer.d.ts +2354 -0
  90. data/js/node_modules/@types/node/child_process.d.ts +1395 -0
  91. data/js/node_modules/@types/node/cluster.d.ts +414 -0
  92. data/js/node_modules/@types/node/console.d.ts +412 -0
  93. data/js/node_modules/@types/node/constants.d.ts +18 -0
  94. data/js/node_modules/@types/node/crypto.d.ts +3978 -0
  95. data/js/node_modules/@types/node/dgram.d.ts +545 -0
  96. data/js/node_modules/@types/node/diagnostics_channel.d.ts +191 -0
  97. data/js/node_modules/@types/node/dns/promises.d.ts +414 -0
  98. data/js/node_modules/@types/node/dns.d.ts +668 -0
  99. data/js/node_modules/@types/node/dom-events.d.ts +126 -0
  100. data/js/node_modules/@types/node/domain.d.ts +170 -0
  101. data/js/node_modules/@types/node/events.d.ts +724 -0
  102. data/js/node_modules/@types/node/fs/promises.d.ts +1190 -0
  103. data/js/node_modules/@types/node/fs.d.ts +4044 -0
  104. data/js/node_modules/@types/node/globals.d.ts +303 -0
  105. data/js/node_modules/@types/node/globals.global.d.ts +1 -0
  106. data/js/node_modules/@types/node/http.d.ts +1724 -0
  107. data/js/node_modules/@types/node/http2.d.ts +2129 -0
  108. data/js/node_modules/@types/node/https.d.ts +441 -0
  109. data/js/node_modules/@types/node/index.d.ts +134 -0
  110. data/js/node_modules/@types/node/inspector.d.ts +2748 -0
  111. data/js/node_modules/@types/node/module.d.ts +129 -0
  112. data/js/node_modules/@types/node/net.d.ts +888 -0
  113. data/js/node_modules/@types/node/os.d.ts +477 -0
  114. data/js/node_modules/@types/node/package.json +237 -0
  115. data/js/node_modules/@types/node/path.d.ts +191 -0
  116. data/js/node_modules/@types/node/perf_hooks.d.ts +638 -0
  117. data/js/node_modules/@types/node/process.d.ts +1494 -0
  118. data/js/node_modules/@types/node/punycode.d.ts +117 -0
  119. data/js/node_modules/@types/node/querystring.d.ts +131 -0
  120. data/js/node_modules/@types/node/readline/promises.d.ts +145 -0
  121. data/js/node_modules/@types/node/readline.d.ts +526 -0
  122. data/js/node_modules/@types/node/repl.d.ts +424 -0
  123. data/js/node_modules/@types/node/stream/consumers.d.ts +12 -0
  124. data/js/node_modules/@types/node/stream/promises.d.ts +42 -0
  125. data/js/node_modules/@types/node/stream/web.d.ts +330 -0
  126. data/js/node_modules/@types/node/stream.d.ts +1421 -0
  127. data/js/node_modules/@types/node/string_decoder.d.ts +67 -0
  128. data/js/node_modules/@types/node/test.d.ts +1383 -0
  129. data/js/node_modules/@types/node/timers/promises.d.ts +93 -0
  130. data/js/node_modules/@types/node/timers.d.ts +215 -0
  131. data/js/node_modules/@types/node/tls.d.ts +1130 -0
  132. data/js/node_modules/@types/node/trace_events.d.ts +182 -0
  133. data/js/node_modules/@types/node/ts4.8/assert/strict.d.ts +8 -0
  134. data/js/node_modules/@types/node/ts4.8/assert.d.ts +972 -0
  135. data/js/node_modules/@types/node/ts4.8/async_hooks.d.ts +530 -0
  136. data/js/node_modules/@types/node/ts4.8/buffer.d.ts +2354 -0
  137. data/js/node_modules/@types/node/ts4.8/child_process.d.ts +1395 -0
  138. data/js/node_modules/@types/node/ts4.8/cluster.d.ts +414 -0
  139. data/js/node_modules/@types/node/ts4.8/console.d.ts +412 -0
  140. data/js/node_modules/@types/node/ts4.8/constants.d.ts +18 -0
  141. data/js/node_modules/@types/node/ts4.8/crypto.d.ts +3977 -0
  142. data/js/node_modules/@types/node/ts4.8/dgram.d.ts +545 -0
  143. data/js/node_modules/@types/node/ts4.8/diagnostics_channel.d.ts +191 -0
  144. data/js/node_modules/@types/node/ts4.8/dns/promises.d.ts +414 -0
  145. data/js/node_modules/@types/node/ts4.8/dns.d.ts +668 -0
  146. data/js/node_modules/@types/node/ts4.8/dom-events.d.ts +126 -0
  147. data/js/node_modules/@types/node/ts4.8/domain.d.ts +170 -0
  148. data/js/node_modules/@types/node/ts4.8/events.d.ts +724 -0
  149. data/js/node_modules/@types/node/ts4.8/fs/promises.d.ts +1189 -0
  150. data/js/node_modules/@types/node/ts4.8/fs.d.ts +4044 -0
  151. data/js/node_modules/@types/node/ts4.8/globals.d.ts +303 -0
  152. data/js/node_modules/@types/node/ts4.8/globals.global.d.ts +1 -0
  153. data/js/node_modules/@types/node/ts4.8/http.d.ts +1724 -0
  154. data/js/node_modules/@types/node/ts4.8/http2.d.ts +2129 -0
  155. data/js/node_modules/@types/node/ts4.8/https.d.ts +441 -0
  156. data/js/node_modules/@types/node/ts4.8/index.d.ts +88 -0
  157. data/js/node_modules/@types/node/ts4.8/inspector.d.ts +2748 -0
  158. data/js/node_modules/@types/node/ts4.8/module.d.ts +129 -0
  159. data/js/node_modules/@types/node/ts4.8/net.d.ts +888 -0
  160. data/js/node_modules/@types/node/ts4.8/os.d.ts +477 -0
  161. data/js/node_modules/@types/node/ts4.8/path.d.ts +191 -0
  162. data/js/node_modules/@types/node/ts4.8/perf_hooks.d.ts +638 -0
  163. data/js/node_modules/@types/node/ts4.8/process.d.ts +1494 -0
  164. data/js/node_modules/@types/node/ts4.8/punycode.d.ts +117 -0
  165. data/js/node_modules/@types/node/ts4.8/querystring.d.ts +131 -0
  166. data/js/node_modules/@types/node/ts4.8/readline/promises.d.ts +145 -0
  167. data/js/node_modules/@types/node/ts4.8/readline.d.ts +526 -0
  168. data/js/node_modules/@types/node/ts4.8/repl.d.ts +424 -0
  169. data/js/node_modules/@types/node/ts4.8/stream/consumers.d.ts +12 -0
  170. data/js/node_modules/@types/node/ts4.8/stream/promises.d.ts +42 -0
  171. data/js/node_modules/@types/node/ts4.8/stream/web.d.ts +330 -0
  172. data/js/node_modules/@types/node/ts4.8/stream.d.ts +1392 -0
  173. data/js/node_modules/@types/node/ts4.8/string_decoder.d.ts +67 -0
  174. data/js/node_modules/@types/node/ts4.8/test.d.ts +1365 -0
  175. data/js/node_modules/@types/node/ts4.8/timers/promises.d.ts +93 -0
  176. data/js/node_modules/@types/node/ts4.8/timers.d.ts +215 -0
  177. data/js/node_modules/@types/node/ts4.8/tls.d.ts +1130 -0
  178. data/js/node_modules/@types/node/ts4.8/trace_events.d.ts +182 -0
  179. data/js/node_modules/@types/node/ts4.8/tty.d.ts +208 -0
  180. data/js/node_modules/@types/node/ts4.8/url.d.ts +901 -0
  181. data/js/node_modules/@types/node/ts4.8/util.d.ts +2116 -0
  182. data/js/node_modules/@types/node/ts4.8/v8.d.ts +635 -0
  183. data/js/node_modules/@types/node/ts4.8/vm.d.ts +894 -0
  184. data/js/node_modules/@types/node/ts4.8/wasi.d.ts +152 -0
  185. data/js/node_modules/@types/node/ts4.8/worker_threads.d.ts +693 -0
  186. data/js/node_modules/@types/node/ts4.8/zlib.d.ts +517 -0
  187. data/js/node_modules/@types/node/tty.d.ts +208 -0
  188. data/js/node_modules/@types/node/url.d.ts +901 -0
  189. data/js/node_modules/@types/node/util.d.ts +2116 -0
  190. data/js/node_modules/@types/node/v8.d.ts +635 -0
  191. data/js/node_modules/@types/node/vm.d.ts +894 -0
  192. data/js/node_modules/@types/node/wasi.d.ts +152 -0
  193. data/js/node_modules/@types/node/worker_threads.d.ts +693 -0
  194. data/js/node_modules/@types/node/zlib.d.ts +517 -0
  195. data/js/node_modules/@types/node-fetch/LICENSE +21 -0
  196. data/js/node_modules/@types/node-fetch/README.md +16 -0
  197. data/js/node_modules/@types/node-fetch/externals.d.ts +24 -0
  198. data/js/node_modules/@types/node-fetch/index.d.ts +224 -0
  199. data/js/node_modules/@types/node-fetch/package.json +83 -0
  200. data/js/node_modules/@waves/bignumber/dist/BigNumber.d.ts +74 -0
  201. data/js/node_modules/@waves/bignumber/dist/BigNumber.js +252 -0
  202. data/js/node_modules/@waves/bignumber/dist/BigNumber.js.map +1 -0
  203. data/js/node_modules/@waves/bignumber/dist/Config.d.ts +22 -0
  204. data/js/node_modules/@waves/bignumber/dist/Config.js +43 -0
  205. data/js/node_modules/@waves/bignumber/dist/Config.js.map +1 -0
  206. data/js/node_modules/@waves/bignumber/dist/bignumber.umd.js +3194 -0
  207. data/js/node_modules/@waves/bignumber/dist/bignumber.umd.min.js +1 -0
  208. data/js/node_modules/@waves/bignumber/dist/index.d.ts +3 -0
  209. data/js/node_modules/@waves/bignumber/dist/index.js +9 -0
  210. data/js/node_modules/@waves/bignumber/dist/index.js.map +1 -0
  211. data/js/node_modules/@waves/bignumber/package.json +64 -0
  212. data/js/node_modules/@waves/bignumber/readme.md +285 -0
  213. data/js/node_modules/@waves/marshall/LICENSE +9 -0
  214. data/js/node_modules/@waves/marshall/README.md +39 -0
  215. data/js/node_modules/@waves/marshall/dist/index.d.ts +26 -0
  216. data/js/node_modules/@waves/marshall/dist/index.js +45 -0
  217. data/js/node_modules/@waves/marshall/dist/index.js.map +1 -0
  218. data/js/node_modules/@waves/marshall/dist/jsonMethods.d.ts +36 -0
  219. data/js/node_modules/@waves/marshall/dist/jsonMethods.js +194 -0
  220. data/js/node_modules/@waves/marshall/dist/jsonMethods.js.map +1 -0
  221. data/js/node_modules/@waves/marshall/dist/libs/Utf8ArrayToStr.d.ts +1 -0
  222. data/js/node_modules/@waves/marshall/dist/libs/Utf8ArrayToStr.js +35 -0
  223. data/js/node_modules/@waves/marshall/dist/libs/Utf8ArrayToStr.js.map +1 -0
  224. data/js/node_modules/@waves/marshall/dist/libs/base58.d.ts +5 -0
  225. data/js/node_modules/@waves/marshall/dist/libs/base58.js +66 -0
  226. data/js/node_modules/@waves/marshall/dist/libs/base58.js.map +1 -0
  227. data/js/node_modules/@waves/marshall/dist/libs/utils.d.ts +2 -0
  228. data/js/node_modules/@waves/marshall/dist/libs/utils.js +6 -0
  229. data/js/node_modules/@waves/marshall/dist/libs/utils.js.map +1 -0
  230. data/js/node_modules/@waves/marshall/dist/min/waves-marshall.min.js +1 -0
  231. data/js/node_modules/@waves/marshall/dist/parse.d.ts +21 -0
  232. data/js/node_modules/@waves/marshall/dist/parse.js +142 -0
  233. data/js/node_modules/@waves/marshall/dist/parse.js.map +1 -0
  234. data/js/node_modules/@waves/marshall/dist/parsePrimitives.d.ts +57 -0
  235. data/js/node_modules/@waves/marshall/dist/parsePrimitives.js +96 -0
  236. data/js/node_modules/@waves/marshall/dist/parsePrimitives.js.map +1 -0
  237. data/js/node_modules/@waves/marshall/dist/schemaTypes.d.ts +62 -0
  238. data/js/node_modules/@waves/marshall/dist/schemaTypes.js +41 -0
  239. data/js/node_modules/@waves/marshall/dist/schemaTypes.js.map +1 -0
  240. data/js/node_modules/@waves/marshall/dist/schemas.d.ts +128 -0
  241. data/js/node_modules/@waves/marshall/dist/schemas.js +542 -0
  242. data/js/node_modules/@waves/marshall/dist/schemas.js.map +1 -0
  243. data/js/node_modules/@waves/marshall/dist/serialize.d.ts +11 -0
  244. data/js/node_modules/@waves/marshall/dist/serialize.js +102 -0
  245. data/js/node_modules/@waves/marshall/dist/serialize.js.map +1 -0
  246. data/js/node_modules/@waves/marshall/dist/serializePrimitives.d.ts +21 -0
  247. data/js/node_modules/@waves/marshall/dist/serializePrimitives.js +63 -0
  248. data/js/node_modules/@waves/marshall/dist/serializePrimitives.js.map +1 -0
  249. data/js/node_modules/@waves/marshall/package.json +45 -0
  250. data/js/node_modules/@waves/marshall/src/index.ts +51 -0
  251. data/js/node_modules/@waves/marshall/src/jsonMethods.ts +231 -0
  252. data/js/node_modules/@waves/marshall/src/libs/Utf8ArrayToStr.ts +35 -0
  253. data/js/node_modules/@waves/marshall/src/libs/base58.ts +88 -0
  254. data/js/node_modules/@waves/marshall/src/libs/utils.ts +6 -0
  255. data/js/node_modules/@waves/marshall/src/parse.ts +157 -0
  256. data/js/node_modules/@waves/marshall/src/parsePrimitives.ts +118 -0
  257. data/js/node_modules/@waves/marshall/src/schemaTypes.ts +91 -0
  258. data/js/node_modules/@waves/marshall/src/schemas.ts +630 -0
  259. data/js/node_modules/@waves/marshall/src/serialize.ts +110 -0
  260. data/js/node_modules/@waves/marshall/src/serializePrimitives.ts +80 -0
  261. data/js/node_modules/@waves/node-api-js/README.md +2 -0
  262. data/js/node_modules/@waves/node-api-js/cjs/api-node/activation/index.d.ts +21 -0
  263. data/js/node_modules/@waves/node-api-js/cjs/api-node/activation/index.js +20 -0
  264. data/js/node_modules/@waves/node-api-js/cjs/api-node/activation/index.js.map +1 -0
  265. data/js/node_modules/@waves/node-api-js/cjs/api-node/addresses/index.d.ts +81 -0
  266. data/js/node_modules/@waves/node-api-js/cjs/api-node/addresses/index.js +174 -0
  267. data/js/node_modules/@waves/node-api-js/cjs/api-node/addresses/index.js.map +1 -0
  268. data/js/node_modules/@waves/node-api-js/cjs/api-node/alias/index.d.ts +6 -0
  269. data/js/node_modules/@waves/node-api-js/cjs/api-node/alias/index.js +22 -0
  270. data/js/node_modules/@waves/node-api-js/cjs/api-node/alias/index.js.map +1 -0
  271. data/js/node_modules/@waves/node-api-js/cjs/api-node/assets/index.d.ts +79 -0
  272. data/js/node_modules/@waves/node-api-js/cjs/api-node/assets/index.js +172 -0
  273. data/js/node_modules/@waves/node-api-js/cjs/api-node/assets/index.js.map +1 -0
  274. data/js/node_modules/@waves/node-api-js/cjs/api-node/blocks/index.d.ts +131 -0
  275. data/js/node_modules/@waves/node-api-js/cjs/api-node/blocks/index.js +210 -0
  276. data/js/node_modules/@waves/node-api-js/cjs/api-node/blocks/index.js.map +1 -0
  277. data/js/node_modules/@waves/node-api-js/cjs/api-node/consensus/index.d.ts +39 -0
  278. data/js/node_modules/@waves/node-api-js/cjs/api-node/consensus/index.js +37 -0
  279. data/js/node_modules/@waves/node-api-js/cjs/api-node/consensus/index.js.map +1 -0
  280. data/js/node_modules/@waves/node-api-js/cjs/api-node/debug/index.d.ts +189 -0
  281. data/js/node_modules/@waves/node-api-js/cjs/api-node/debug/index.js +245 -0
  282. data/js/node_modules/@waves/node-api-js/cjs/api-node/debug/index.js.map +1 -0
  283. data/js/node_modules/@waves/node-api-js/cjs/api-node/eth/index.d.ts +3 -0
  284. data/js/node_modules/@waves/node-api-js/cjs/api-node/eth/index.js +15 -0
  285. data/js/node_modules/@waves/node-api-js/cjs/api-node/eth/index.js.map +1 -0
  286. data/js/node_modules/@waves/node-api-js/cjs/api-node/leasing/index.d.ts +22 -0
  287. data/js/node_modules/@waves/node-api-js/cjs/api-node/leasing/index.js +42 -0
  288. data/js/node_modules/@waves/node-api-js/cjs/api-node/leasing/index.js.map +1 -0
  289. data/js/node_modules/@waves/node-api-js/cjs/api-node/node/index.d.ts +11 -0
  290. data/js/node_modules/@waves/node-api-js/cjs/api-node/node/index.js +20 -0
  291. data/js/node_modules/@waves/node-api-js/cjs/api-node/node/index.js.map +1 -0
  292. data/js/node_modules/@waves/node-api-js/cjs/api-node/peers/index.d.ts +46 -0
  293. data/js/node_modules/@waves/node-api-js/cjs/api-node/peers/index.js +60 -0
  294. data/js/node_modules/@waves/node-api-js/cjs/api-node/peers/index.js.map +1 -0
  295. data/js/node_modules/@waves/node-api-js/cjs/api-node/rewards/index.d.ts +21 -0
  296. data/js/node_modules/@waves/node-api-js/cjs/api-node/rewards/index.js +21 -0
  297. data/js/node_modules/@waves/node-api-js/cjs/api-node/rewards/index.js.map +1 -0
  298. data/js/node_modules/@waves/node-api-js/cjs/api-node/transactions/index.d.ts +73 -0
  299. data/js/node_modules/@waves/node-api-js/cjs/api-node/transactions/index.js +193 -0
  300. data/js/node_modules/@waves/node-api-js/cjs/api-node/transactions/index.js.map +1 -0
  301. data/js/node_modules/@waves/node-api-js/cjs/api-node/utils/index.d.ts +110 -0
  302. data/js/node_modules/@waves/node-api-js/cjs/api-node/utils/index.js +211 -0
  303. data/js/node_modules/@waves/node-api-js/cjs/api-node/utils/index.js.map +1 -0
  304. data/js/node_modules/@waves/node-api-js/cjs/api-node/wallet/index.d.ts +5 -0
  305. data/js/node_modules/@waves/node-api-js/cjs/api-node/wallet/index.js +7 -0
  306. data/js/node_modules/@waves/node-api-js/cjs/api-node/wallet/index.js.map +1 -0
  307. data/js/node_modules/@waves/node-api-js/cjs/constants.d.ts +40 -0
  308. data/js/node_modules/@waves/node-api-js/cjs/constants.js +43 -0
  309. data/js/node_modules/@waves/node-api-js/cjs/constants.js.map +1 -0
  310. data/js/node_modules/@waves/node-api-js/cjs/create.d.ts +1240 -0
  311. data/js/node_modules/@waves/node-api-js/cjs/create.js +119 -0
  312. data/js/node_modules/@waves/node-api-js/cjs/create.js.map +1 -0
  313. data/js/node_modules/@waves/node-api-js/cjs/index.d.ts +9 -0
  314. data/js/node_modules/@waves/node-api-js/cjs/index.js +18 -0
  315. data/js/node_modules/@waves/node-api-js/cjs/index.js.map +1 -0
  316. data/js/node_modules/@waves/node-api-js/cjs/interface.d.ts +44 -0
  317. data/js/node_modules/@waves/node-api-js/cjs/interface.js +10 -0
  318. data/js/node_modules/@waves/node-api-js/cjs/interface.js.map +1 -0
  319. data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/availableSponsoredBalances.d.ts +7 -0
  320. data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/availableSponsoredBalances.js +30 -0
  321. data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/availableSponsoredBalances.js.map +1 -0
  322. data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/ethAddress2waves.d.ts +1 -0
  323. data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/ethAddress2waves.js +47 -0
  324. data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/ethAddress2waves.js.map +1 -0
  325. data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/getAssetIdListByTx.d.ts +2 -0
  326. data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/getAssetIdListByTx.js +48 -0
  327. data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/getAssetIdListByTx.js.map +1 -0
  328. data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/getAssetsByTransaction.d.ts +3 -0
  329. data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/getAssetsByTransaction.js +14 -0
  330. data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/getAssetsByTransaction.js.map +1 -0
  331. data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/getTransactionsWithAssets.d.ts +6 -0
  332. data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/getTransactionsWithAssets.js +13 -0
  333. data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/getTransactionsWithAssets.js.map +1 -0
  334. data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/watch.d.ts +24 -0
  335. data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/watch.js +168 -0
  336. data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/watch.js.map +1 -0
  337. data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/wavesAddress2eth.d.ts +1 -0
  338. data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/wavesAddress2eth.js +10 -0
  339. data/js/node_modules/@waves/node-api-js/cjs/tools/adresses/wavesAddress2eth.js.map +1 -0
  340. data/js/node_modules/@waves/node-api-js/cjs/tools/assets/wavesAsset2eth.d.ts +1 -0
  341. data/js/node_modules/@waves/node-api-js/cjs/tools/assets/wavesAsset2eth.js +10 -0
  342. data/js/node_modules/@waves/node-api-js/cjs/tools/assets/wavesAsset2eth.js.map +1 -0
  343. data/js/node_modules/@waves/node-api-js/cjs/tools/blocks/detectInterval.d.ts +1 -0
  344. data/js/node_modules/@waves/node-api-js/cjs/tools/blocks/detectInterval.js +12 -0
  345. data/js/node_modules/@waves/node-api-js/cjs/tools/blocks/detectInterval.js.map +1 -0
  346. data/js/node_modules/@waves/node-api-js/cjs/tools/blocks/getNetworkByte.d.ts +1 -0
  347. data/js/node_modules/@waves/node-api-js/cjs/tools/blocks/getNetworkByte.js +54 -0
  348. data/js/node_modules/@waves/node-api-js/cjs/tools/blocks/getNetworkByte.js.map +1 -0
  349. data/js/node_modules/@waves/node-api-js/cjs/tools/blocks/getNetworkCode.d.ts +1 -0
  350. data/js/node_modules/@waves/node-api-js/cjs/tools/blocks/getNetworkCode.js +11 -0
  351. data/js/node_modules/@waves/node-api-js/cjs/tools/blocks/getNetworkCode.js.map +1 -0
  352. data/js/node_modules/@waves/node-api-js/cjs/tools/blocks/waitHeight.d.ts +3 -0
  353. data/js/node_modules/@waves/node-api-js/cjs/tools/blocks/waitHeight.js +65 -0
  354. data/js/node_modules/@waves/node-api-js/cjs/tools/blocks/waitHeight.js.map +1 -0
  355. data/js/node_modules/@waves/node-api-js/cjs/tools/parse.d.ts +1 -0
  356. data/js/node_modules/@waves/node-api-js/cjs/tools/parse.js +8 -0
  357. data/js/node_modules/@waves/node-api-js/cjs/tools/parse.js.map +1 -0
  358. data/js/node_modules/@waves/node-api-js/cjs/tools/query.d.ts +4 -0
  359. data/js/node_modules/@waves/node-api-js/cjs/tools/query.js +41 -0
  360. data/js/node_modules/@waves/node-api-js/cjs/tools/query.js.map +1 -0
  361. data/js/node_modules/@waves/node-api-js/cjs/tools/request.d.ts +64 -0
  362. data/js/node_modules/@waves/node-api-js/cjs/tools/request.js +42 -0
  363. data/js/node_modules/@waves/node-api-js/cjs/tools/request.js.map +1 -0
  364. data/js/node_modules/@waves/node-api-js/cjs/tools/resolve.d.ts +1 -0
  365. data/js/node_modules/@waves/node-api-js/cjs/tools/resolve.js +7 -0
  366. data/js/node_modules/@waves/node-api-js/cjs/tools/resolve.js.map +1 -0
  367. data/js/node_modules/@waves/node-api-js/cjs/tools/stringify.d.ts +1 -0
  368. data/js/node_modules/@waves/node-api-js/cjs/tools/stringify.js +21 -0
  369. data/js/node_modules/@waves/node-api-js/cjs/tools/stringify.js.map +1 -0
  370. data/js/node_modules/@waves/node-api-js/cjs/tools/transactions/broadcast.d.ts +14 -0
  371. data/js/node_modules/@waves/node-api-js/cjs/tools/transactions/broadcast.js +60 -0
  372. data/js/node_modules/@waves/node-api-js/cjs/tools/transactions/broadcast.js.map +1 -0
  373. data/js/node_modules/@waves/node-api-js/cjs/tools/transactions/ethTxId2waves.d.ts +1 -0
  374. data/js/node_modules/@waves/node-api-js/cjs/tools/transactions/ethTxId2waves.js +11 -0
  375. data/js/node_modules/@waves/node-api-js/cjs/tools/transactions/ethTxId2waves.js.map +1 -0
  376. data/js/node_modules/@waves/node-api-js/cjs/tools/transactions/transactions.d.ts +0 -0
  377. data/js/node_modules/@waves/node-api-js/cjs/tools/transactions/transactions.js +2 -0
  378. data/js/node_modules/@waves/node-api-js/cjs/tools/transactions/transactions.js.map +1 -0
  379. data/js/node_modules/@waves/node-api-js/cjs/tools/transactions/wait.d.ts +10 -0
  380. data/js/node_modules/@waves/node-api-js/cjs/tools/transactions/wait.js +42 -0
  381. data/js/node_modules/@waves/node-api-js/cjs/tools/transactions/wait.js.map +1 -0
  382. data/js/node_modules/@waves/node-api-js/cjs/tools/utils.d.ts +32 -0
  383. data/js/node_modules/@waves/node-api-js/cjs/tools/utils.js +118 -0
  384. data/js/node_modules/@waves/node-api-js/cjs/tools/utils.js.map +1 -0
  385. data/js/node_modules/@waves/node-api-js/dist/0.node-api.js +467 -0
  386. data/js/node_modules/@waves/node-api-js/dist/node-api.js +30544 -0
  387. data/js/node_modules/@waves/node-api-js/dist/node-api.min.js +26 -0
  388. data/js/node_modules/@waves/node-api-js/dist/node-api.min.js.LICENSE.txt +17 -0
  389. data/js/node_modules/@waves/node-api-js/dist/node_fs-node_path.node-api.js +23 -0
  390. data/js/node_modules/@waves/node-api-js/dist/vendors-node_modules_node-fetch_src_utils_multipart-parser_js.node-api.js +599 -0
  391. data/js/node_modules/@waves/node-api-js/es/api-node/activation/index.d.ts +21 -0
  392. data/js/node_modules/@waves/node-api-js/es/api-node/activation/index.js +13 -0
  393. data/js/node_modules/@waves/node-api-js/es/api-node/activation/index.js.map +1 -0
  394. data/js/node_modules/@waves/node-api-js/es/api-node/addresses/index.d.ts +81 -0
  395. data/js/node_modules/@waves/node-api-js/es/api-node/addresses/index.js +111 -0
  396. data/js/node_modules/@waves/node-api-js/es/api-node/addresses/index.js.map +1 -0
  397. data/js/node_modules/@waves/node-api-js/es/api-node/alias/index.d.ts +6 -0
  398. data/js/node_modules/@waves/node-api-js/es/api-node/alias/index.js +14 -0
  399. data/js/node_modules/@waves/node-api-js/es/api-node/alias/index.js.map +1 -0
  400. data/js/node_modules/@waves/node-api-js/es/api-node/assets/index.d.ts +79 -0
  401. data/js/node_modules/@waves/node-api-js/es/api-node/assets/index.js +103 -0
  402. data/js/node_modules/@waves/node-api-js/es/api-node/assets/index.js.map +1 -0
  403. data/js/node_modules/@waves/node-api-js/es/api-node/blocks/index.d.ts +131 -0
  404. data/js/node_modules/@waves/node-api-js/es/api-node/blocks/index.js +179 -0
  405. data/js/node_modules/@waves/node-api-js/es/api-node/blocks/index.js.map +1 -0
  406. data/js/node_modules/@waves/node-api-js/es/api-node/consensus/index.d.ts +39 -0
  407. data/js/node_modules/@waves/node-api-js/es/api-node/consensus/index.js +27 -0
  408. data/js/node_modules/@waves/node-api-js/es/api-node/consensus/index.js.map +1 -0
  409. data/js/node_modules/@waves/node-api-js/es/api-node/debug/index.d.ts +189 -0
  410. data/js/node_modules/@waves/node-api-js/es/api-node/debug/index.js +201 -0
  411. data/js/node_modules/@waves/node-api-js/es/api-node/debug/index.js.map +1 -0
  412. data/js/node_modules/@waves/node-api-js/es/api-node/eth/index.d.ts +3 -0
  413. data/js/node_modules/@waves/node-api-js/es/api-node/eth/index.js +8 -0
  414. data/js/node_modules/@waves/node-api-js/es/api-node/eth/index.js.map +1 -0
  415. data/js/node_modules/@waves/node-api-js/es/api-node/leasing/index.d.ts +22 -0
  416. data/js/node_modules/@waves/node-api-js/es/api-node/leasing/index.js +22 -0
  417. data/js/node_modules/@waves/node-api-js/es/api-node/leasing/index.js.map +1 -0
  418. data/js/node_modules/@waves/node-api-js/es/api-node/node/index.d.ts +11 -0
  419. data/js/node_modules/@waves/node-api-js/es/api-node/node/index.js +10 -0
  420. data/js/node_modules/@waves/node-api-js/es/api-node/node/index.js.map +1 -0
  421. data/js/node_modules/@waves/node-api-js/es/api-node/peers/index.d.ts +46 -0
  422. data/js/node_modules/@waves/node-api-js/es/api-node/peers/index.js +46 -0
  423. data/js/node_modules/@waves/node-api-js/es/api-node/peers/index.js.map +1 -0
  424. data/js/node_modules/@waves/node-api-js/es/api-node/rewards/index.d.ts +21 -0
  425. data/js/node_modules/@waves/node-api-js/es/api-node/rewards/index.js +13 -0
  426. data/js/node_modules/@waves/node-api-js/es/api-node/rewards/index.js.map +1 -0
  427. data/js/node_modules/@waves/node-api-js/es/api-node/transactions/index.d.ts +73 -0
  428. data/js/node_modules/@waves/node-api-js/es/api-node/transactions/index.js +137 -0
  429. data/js/node_modules/@waves/node-api-js/es/api-node/transactions/index.js.map +1 -0
  430. data/js/node_modules/@waves/node-api-js/es/api-node/utils/index.d.ts +110 -0
  431. data/js/node_modules/@waves/node-api-js/es/api-node/utils/index.js +193 -0
  432. data/js/node_modules/@waves/node-api-js/es/api-node/utils/index.js.map +1 -0
  433. data/js/node_modules/@waves/node-api-js/es/api-node/wallet/index.d.ts +5 -0
  434. data/js/node_modules/@waves/node-api-js/es/api-node/wallet/index.js +7 -0
  435. data/js/node_modules/@waves/node-api-js/es/api-node/wallet/index.js.map +1 -0
  436. data/js/node_modules/@waves/node-api-js/es/constants.d.ts +40 -0
  437. data/js/node_modules/@waves/node-api-js/es/constants.js +40 -0
  438. data/js/node_modules/@waves/node-api-js/es/constants.js.map +1 -0
  439. data/js/node_modules/@waves/node-api-js/es/create.d.ts +1240 -0
  440. data/js/node_modules/@waves/node-api-js/es/create.js +93 -0
  441. data/js/node_modules/@waves/node-api-js/es/create.js.map +1 -0
  442. data/js/node_modules/@waves/node-api-js/es/index.d.ts +9 -0
  443. data/js/node_modules/@waves/node-api-js/es/index.js +9 -0
  444. data/js/node_modules/@waves/node-api-js/es/index.js.map +1 -0
  445. data/js/node_modules/@waves/node-api-js/es/interface.d.ts +44 -0
  446. data/js/node_modules/@waves/node-api-js/es/interface.js +3 -0
  447. data/js/node_modules/@waves/node-api-js/es/interface.js.map +1 -0
  448. data/js/node_modules/@waves/node-api-js/es/tools/adresses/availableSponsoredBalances.d.ts +7 -0
  449. data/js/node_modules/@waves/node-api-js/es/tools/adresses/availableSponsoredBalances.js +27 -0
  450. data/js/node_modules/@waves/node-api-js/es/tools/adresses/availableSponsoredBalances.js.map +1 -0
  451. data/js/node_modules/@waves/node-api-js/es/tools/adresses/ethAddress2waves.d.ts +1 -0
  452. data/js/node_modules/@waves/node-api-js/es/tools/adresses/ethAddress2waves.js +31 -0
  453. data/js/node_modules/@waves/node-api-js/es/tools/adresses/ethAddress2waves.js.map +1 -0
  454. data/js/node_modules/@waves/node-api-js/es/tools/adresses/getAssetIdListByTx.d.ts +2 -0
  455. data/js/node_modules/@waves/node-api-js/es/tools/adresses/getAssetIdListByTx.js +24 -0
  456. data/js/node_modules/@waves/node-api-js/es/tools/adresses/getAssetIdListByTx.js.map +1 -0
  457. data/js/node_modules/@waves/node-api-js/es/tools/adresses/getAssetsByTransaction.d.ts +3 -0
  458. data/js/node_modules/@waves/node-api-js/es/tools/adresses/getAssetsByTransaction.js +8 -0
  459. data/js/node_modules/@waves/node-api-js/es/tools/adresses/getAssetsByTransaction.js.map +1 -0
  460. data/js/node_modules/@waves/node-api-js/es/tools/adresses/getTransactionsWithAssets.d.ts +6 -0
  461. data/js/node_modules/@waves/node-api-js/es/tools/adresses/getTransactionsWithAssets.js +7 -0
  462. data/js/node_modules/@waves/node-api-js/es/tools/adresses/getTransactionsWithAssets.js.map +1 -0
  463. data/js/node_modules/@waves/node-api-js/es/tools/adresses/watch.d.ts +24 -0
  464. data/js/node_modules/@waves/node-api-js/es/tools/adresses/watch.js +134 -0
  465. data/js/node_modules/@waves/node-api-js/es/tools/adresses/watch.js.map +1 -0
  466. data/js/node_modules/@waves/node-api-js/es/tools/adresses/wavesAddress2eth.d.ts +1 -0
  467. data/js/node_modules/@waves/node-api-js/es/tools/adresses/wavesAddress2eth.js +7 -0
  468. data/js/node_modules/@waves/node-api-js/es/tools/adresses/wavesAddress2eth.js.map +1 -0
  469. data/js/node_modules/@waves/node-api-js/es/tools/assets/wavesAsset2eth.d.ts +1 -0
  470. data/js/node_modules/@waves/node-api-js/es/tools/assets/wavesAsset2eth.js +7 -0
  471. data/js/node_modules/@waves/node-api-js/es/tools/assets/wavesAsset2eth.js.map +1 -0
  472. data/js/node_modules/@waves/node-api-js/es/tools/blocks/detectInterval.d.ts +1 -0
  473. data/js/node_modules/@waves/node-api-js/es/tools/blocks/detectInterval.js +9 -0
  474. data/js/node_modules/@waves/node-api-js/es/tools/blocks/detectInterval.js.map +1 -0
  475. data/js/node_modules/@waves/node-api-js/es/tools/blocks/getNetworkByte.d.ts +1 -0
  476. data/js/node_modules/@waves/node-api-js/es/tools/blocks/getNetworkByte.js +51 -0
  477. data/js/node_modules/@waves/node-api-js/es/tools/blocks/getNetworkByte.js.map +1 -0
  478. data/js/node_modules/@waves/node-api-js/es/tools/blocks/getNetworkCode.d.ts +1 -0
  479. data/js/node_modules/@waves/node-api-js/es/tools/blocks/getNetworkCode.js +5 -0
  480. data/js/node_modules/@waves/node-api-js/es/tools/blocks/getNetworkCode.js.map +1 -0
  481. data/js/node_modules/@waves/node-api-js/es/tools/blocks/waitHeight.d.ts +3 -0
  482. data/js/node_modules/@waves/node-api-js/es/tools/blocks/waitHeight.js +36 -0
  483. data/js/node_modules/@waves/node-api-js/es/tools/blocks/waitHeight.js.map +1 -0
  484. data/js/node_modules/@waves/node-api-js/es/tools/parse.d.ts +1 -0
  485. data/js/node_modules/@waves/node-api-js/es/tools/parse.js +5 -0
  486. data/js/node_modules/@waves/node-api-js/es/tools/parse.js.map +1 -0
  487. data/js/node_modules/@waves/node-api-js/es/tools/query.d.ts +4 -0
  488. data/js/node_modules/@waves/node-api-js/es/tools/query.js +12 -0
  489. data/js/node_modules/@waves/node-api-js/es/tools/query.js.map +1 -0
  490. data/js/node_modules/@waves/node-api-js/es/tools/request.d.ts +64 -0
  491. data/js/node_modules/@waves/node-api-js/es/tools/request.js +22 -0
  492. data/js/node_modules/@waves/node-api-js/es/tools/request.js.map +1 -0
  493. data/js/node_modules/@waves/node-api-js/es/tools/resolve.d.ts +1 -0
  494. data/js/node_modules/@waves/node-api-js/es/tools/resolve.js +4 -0
  495. data/js/node_modules/@waves/node-api-js/es/tools/resolve.js.map +1 -0
  496. data/js/node_modules/@waves/node-api-js/es/tools/stringify.d.ts +1 -0
  497. data/js/node_modules/@waves/node-api-js/es/tools/stringify.js +18 -0
  498. data/js/node_modules/@waves/node-api-js/es/tools/stringify.js.map +1 -0
  499. data/js/node_modules/@waves/node-api-js/es/tools/transactions/broadcast.d.ts +14 -0
  500. data/js/node_modules/@waves/node-api-js/es/tools/transactions/broadcast.js +43 -0
  501. data/js/node_modules/@waves/node-api-js/es/tools/transactions/broadcast.js.map +1 -0
  502. data/js/node_modules/@waves/node-api-js/es/tools/transactions/ethTxId2waves.d.ts +1 -0
  503. data/js/node_modules/@waves/node-api-js/es/tools/transactions/ethTxId2waves.js +8 -0
  504. data/js/node_modules/@waves/node-api-js/es/tools/transactions/ethTxId2waves.js.map +1 -0
  505. data/js/node_modules/@waves/node-api-js/es/tools/transactions/transactions.d.ts +0 -0
  506. data/js/node_modules/@waves/node-api-js/es/tools/transactions/transactions.js +2 -0
  507. data/js/node_modules/@waves/node-api-js/es/tools/transactions/transactions.js.map +1 -0
  508. data/js/node_modules/@waves/node-api-js/es/tools/transactions/wait.d.ts +10 -0
  509. data/js/node_modules/@waves/node-api-js/es/tools/transactions/wait.js +39 -0
  510. data/js/node_modules/@waves/node-api-js/es/tools/transactions/wait.js.map +1 -0
  511. data/js/node_modules/@waves/node-api-js/es/tools/utils.d.ts +32 -0
  512. data/js/node_modules/@waves/node-api-js/es/tools/utils.js +73 -0
  513. data/js/node_modules/@waves/node-api-js/es/tools/utils.js.map +1 -0
  514. data/js/node_modules/@waves/node-api-js/package.json +66 -0
  515. data/js/node_modules/@waves/parse-json-bignumber/coverage/clover.xml +225 -0
  516. data/js/node_modules/@waves/parse-json-bignumber/coverage/coverage-final.json +2 -0
  517. data/js/node_modules/@waves/parse-json-bignumber/coverage/lcov-report/base.css +212 -0
  518. data/js/node_modules/@waves/parse-json-bignumber/coverage/lcov-report/index.html +93 -0
  519. data/js/node_modules/@waves/parse-json-bignumber/coverage/lcov-report/parse-json-bignumber.ts.html +1598 -0
  520. data/js/node_modules/@waves/parse-json-bignumber/coverage/lcov-report/prettify.css +1 -0
  521. data/js/node_modules/@waves/parse-json-bignumber/coverage/lcov-report/prettify.js +1 -0
  522. data/js/node_modules/@waves/parse-json-bignumber/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  523. data/js/node_modules/@waves/parse-json-bignumber/coverage/lcov-report/sorter.js +158 -0
  524. data/js/node_modules/@waves/parse-json-bignumber/coverage/lcov.info +415 -0
  525. data/js/node_modules/@waves/parse-json-bignumber/dist/parse-json-bignumber.d.ts +11 -0
  526. data/js/node_modules/@waves/parse-json-bignumber/dist/parse-json-bignumber.js +412 -0
  527. data/js/node_modules/@waves/parse-json-bignumber/dist/parse-json-bignumber.min.js +1 -0
  528. data/js/node_modules/@waves/parse-json-bignumber/package.json +40 -0
  529. data/js/node_modules/@waves/parse-json-bignumber/src/parse-json-bignumber.ts +511 -0
  530. data/js/node_modules/@waves/parse-json-bignumber/test/index.ts +130 -0
  531. data/js/node_modules/@waves/parse-json-bignumber/test/tsconfig.json +14 -0
  532. data/js/node_modules/@waves/parse-json-bignumber/tsconfig.json +15 -0
  533. data/js/node_modules/@waves/protobuf-serialization/README.MD +116 -0
  534. data/js/node_modules/@waves/protobuf-serialization/dist/index.d.ts +2005 -0
  535. data/js/node_modules/@waves/protobuf-serialization/dist/index.js +6636 -0
  536. data/js/node_modules/@waves/protobuf-serialization/package.json +30 -0
  537. data/js/node_modules/@waves/protobuf-serialization/proto/waves/amount.proto +10 -0
  538. data/js/node_modules/@waves/protobuf-serialization/proto/waves/block.proto +40 -0
  539. data/js/node_modules/@waves/protobuf-serialization/proto/waves/events/events.proto +213 -0
  540. data/js/node_modules/@waves/protobuf-serialization/proto/waves/events/grpc/blockchain_updates.proto +42 -0
  541. data/js/node_modules/@waves/protobuf-serialization/proto/waves/invoke_script_result.proto +98 -0
  542. data/js/node_modules/@waves/protobuf-serialization/proto/waves/lang/dapp_meta.proto +21 -0
  543. data/js/node_modules/@waves/protobuf-serialization/proto/waves/node/grpc/accounts_api.proto +68 -0
  544. data/js/node_modules/@waves/protobuf-serialization/proto/waves/node/grpc/assets_api.proto +41 -0
  545. data/js/node_modules/@waves/protobuf-serialization/proto/waves/node/grpc/blockchain_api.proto +54 -0
  546. data/js/node_modules/@waves/protobuf-serialization/proto/waves/node/grpc/blocks_api.proto +41 -0
  547. data/js/node_modules/@waves/protobuf-serialization/proto/waves/node/grpc/transactions_api.proto +73 -0
  548. data/js/node_modules/@waves/protobuf-serialization/proto/waves/order.proto +43 -0
  549. data/js/node_modules/@waves/protobuf-serialization/proto/waves/recipient.proto +13 -0
  550. data/js/node_modules/@waves/protobuf-serialization/proto/waves/transaction.proto +156 -0
  551. data/js/node_modules/@waves/ts-lib-crypto/README.md +492 -0
  552. data/js/node_modules/@waves/ts-lib-crypto/bytes.d.ts +10 -0
  553. data/js/node_modules/@waves/ts-lib-crypto/bytes.js +21 -0
  554. data/js/node_modules/@waves/ts-lib-crypto/bytes.js.map +1 -0
  555. data/js/node_modules/@waves/ts-lib-crypto/conversions/base-xx.d.ts +7 -0
  556. data/js/node_modules/@waves/ts-lib-crypto/conversions/base-xx.js +27 -0
  557. data/js/node_modules/@waves/ts-lib-crypto/conversions/base-xx.js.map +1 -0
  558. data/js/node_modules/@waves/ts-lib-crypto/conversions/param.d.ts +3 -0
  559. data/js/node_modules/@waves/ts-lib-crypto/conversions/param.js +24 -0
  560. data/js/node_modules/@waves/ts-lib-crypto/conversions/param.js.map +1 -0
  561. data/js/node_modules/@waves/ts-lib-crypto/conversions/string-bytes.d.ts +11 -0
  562. data/js/node_modules/@waves/ts-lib-crypto/conversions/string-bytes.js +65 -0
  563. data/js/node_modules/@waves/ts-lib-crypto/conversions/string-bytes.js.map +1 -0
  564. data/js/node_modules/@waves/ts-lib-crypto/crypto/address-keys-seed.d.ts +7 -0
  565. data/js/node_modules/@waves/ts-lib-crypto/crypto/address-keys-seed.js +58 -0
  566. data/js/node_modules/@waves/ts-lib-crypto/crypto/address-keys-seed.js.map +1 -0
  567. data/js/node_modules/@waves/ts-lib-crypto/crypto/concat-split.d.ts +3 -0
  568. data/js/node_modules/@waves/ts-lib-crypto/crypto/concat-split.js +39 -0
  569. data/js/node_modules/@waves/ts-lib-crypto/crypto/concat-split.js.map +1 -0
  570. data/js/node_modules/@waves/ts-lib-crypto/crypto/crypto.d.ts +13 -0
  571. data/js/node_modules/@waves/ts-lib-crypto/crypto/crypto.js +117 -0
  572. data/js/node_modules/@waves/ts-lib-crypto/crypto/crypto.js.map +1 -0
  573. data/js/node_modules/@waves/ts-lib-crypto/crypto/encryption.d.ts +6 -0
  574. data/js/node_modules/@waves/ts-lib-crypto/crypto/encryption.js +89 -0
  575. data/js/node_modules/@waves/ts-lib-crypto/crypto/encryption.js.map +1 -0
  576. data/js/node_modules/@waves/ts-lib-crypto/crypto/hashing.d.ts +7 -0
  577. data/js/node_modules/@waves/ts-lib-crypto/crypto/hashing.js +39 -0
  578. data/js/node_modules/@waves/ts-lib-crypto/crypto/hashing.js.map +1 -0
  579. data/js/node_modules/@waves/ts-lib-crypto/crypto/interface.d.ts +98 -0
  580. data/js/node_modules/@waves/ts-lib-crypto/crypto/interface.js +9 -0
  581. data/js/node_modules/@waves/ts-lib-crypto/crypto/interface.js.map +1 -0
  582. data/js/node_modules/@waves/ts-lib-crypto/crypto/merkle-verify.d.ts +7 -0
  583. data/js/node_modules/@waves/ts-lib-crypto/crypto/merkle-verify.js +51 -0
  584. data/js/node_modules/@waves/ts-lib-crypto/crypto/merkle-verify.js.map +1 -0
  585. data/js/node_modules/@waves/ts-lib-crypto/crypto/random.d.ts +4 -0
  586. data/js/node_modules/@waves/ts-lib-crypto/crypto/random.js +51 -0
  587. data/js/node_modules/@waves/ts-lib-crypto/crypto/random.js.map +1 -0
  588. data/js/node_modules/@waves/ts-lib-crypto/crypto/rsa.d.ts +7 -0
  589. data/js/node_modules/@waves/ts-lib-crypto/crypto/rsa.js +159 -0
  590. data/js/node_modules/@waves/ts-lib-crypto/crypto/rsa.js.map +1 -0
  591. data/js/node_modules/@waves/ts-lib-crypto/crypto/seed-ecryption.d.ts +9 -0
  592. data/js/node_modules/@waves/ts-lib-crypto/crypto/seed-ecryption.js +62 -0
  593. data/js/node_modules/@waves/ts-lib-crypto/crypto/seed-ecryption.js.map +1 -0
  594. data/js/node_modules/@waves/ts-lib-crypto/crypto/seed-words-list.d.ts +1 -0
  595. data/js/node_modules/@waves/ts-lib-crypto/crypto/seed-words-list.js +189 -0
  596. data/js/node_modules/@waves/ts-lib-crypto/crypto/seed-words-list.js.map +1 -0
  597. data/js/node_modules/@waves/ts-lib-crypto/crypto/sign.d.ts +2 -0
  598. data/js/node_modules/@waves/ts-lib-crypto/crypto/sign.js +16 -0
  599. data/js/node_modules/@waves/ts-lib-crypto/crypto/sign.js.map +1 -0
  600. data/js/node_modules/@waves/ts-lib-crypto/crypto/util.d.ts +3 -0
  601. data/js/node_modules/@waves/ts-lib-crypto/crypto/util.js +9 -0
  602. data/js/node_modules/@waves/ts-lib-crypto/crypto/util.js.map +1 -0
  603. data/js/node_modules/@waves/ts-lib-crypto/crypto/verification.d.ts +7 -0
  604. data/js/node_modules/@waves/ts-lib-crypto/crypto/verification.js +49 -0
  605. data/js/node_modules/@waves/ts-lib-crypto/crypto/verification.js.map +1 -0
  606. data/js/node_modules/@waves/ts-lib-crypto/extensions/chain-id.d.ts +5 -0
  607. data/js/node_modules/@waves/ts-lib-crypto/extensions/chain-id.js +16 -0
  608. data/js/node_modules/@waves/ts-lib-crypto/extensions/chain-id.js.map +1 -0
  609. data/js/node_modules/@waves/ts-lib-crypto/extensions/seed.d.ts +6 -0
  610. data/js/node_modules/@waves/ts-lib-crypto/extensions/seed.js +18 -0
  611. data/js/node_modules/@waves/ts-lib-crypto/extensions/seed.js.map +1 -0
  612. data/js/node_modules/@waves/ts-lib-crypto/index.d.ts +10 -0
  613. data/js/node_modules/@waves/ts-lib-crypto/index.js +21 -0
  614. data/js/node_modules/@waves/ts-lib-crypto/index.js.map +1 -0
  615. data/js/node_modules/@waves/ts-lib-crypto/libs/Utf8.d.ts +2 -0
  616. data/js/node_modules/@waves/ts-lib-crypto/libs/Utf8.js +61 -0
  617. data/js/node_modules/@waves/ts-lib-crypto/libs/Utf8.js.map +1 -0
  618. data/js/node_modules/@waves/ts-lib-crypto/libs/axlsign.js +1374 -0
  619. data/js/node_modules/@waves/ts-lib-crypto/libs/base58.d.ts +5 -0
  620. data/js/node_modules/@waves/ts-lib-crypto/libs/base58.js +66 -0
  621. data/js/node_modules/@waves/ts-lib-crypto/libs/base58.js.map +1 -0
  622. data/js/node_modules/@waves/ts-lib-crypto/libs/blake2b.js +308 -0
  623. data/js/node_modules/@waves/ts-lib-crypto/libs/sha3.js +441 -0
  624. data/js/node_modules/@waves/ts-lib-crypto/min/waves-lib-crypto.js +33 -0
  625. data/js/node_modules/@waves/ts-lib-crypto/package.json +31 -0
  626. data/js/node_modules/@waves/ts-types/dist/src/common.d.ts +59 -0
  627. data/js/node_modules/@waves/ts-types/dist/src/common.js +53 -0
  628. data/js/node_modules/@waves/ts-types/dist/src/exchange.d.ts +47 -0
  629. data/js/node_modules/@waves/ts-types/dist/src/exchange.js +2 -0
  630. data/js/node_modules/@waves/ts-types/dist/src/index.d.ts +52 -0
  631. data/js/node_modules/@waves/ts-types/dist/src/index.js +63 -0
  632. data/js/node_modules/@waves/ts-types/dist/src/invoke.d.ts +22 -0
  633. data/js/node_modules/@waves/ts-types/dist/src/invoke.js +2 -0
  634. data/js/node_modules/@waves/ts-types/dist/src/network.d.ts +6 -0
  635. data/js/node_modules/@waves/ts-types/dist/src/network.js +10 -0
  636. data/js/node_modules/@waves/ts-types/dist/src/parts.d.ts +159 -0
  637. data/js/node_modules/@waves/ts-types/dist/src/parts.js +2 -0
  638. data/js/node_modules/@waves/ts-types/dist/transactions/index.d.ts +363 -0
  639. data/js/node_modules/@waves/ts-types/dist/transactions/index.js +3 -0
  640. data/js/node_modules/@waves/ts-types/index.ts +1 -0
  641. data/js/node_modules/@waves/ts-types/package.json +41 -0
  642. data/js/node_modules/@waves/ts-types/src/index.ts +57 -0
  643. data/js/node_modules/@waves/ts-types/src/parts.ts +247 -0
  644. data/js/node_modules/@waves/ts-types/transactions/index.ts +789 -0
  645. data/js/node_modules/@waves/ts-types/tsconfig.json +16 -0
  646. data/js/node_modules/@waves/waves-transactions/README.md +432 -0
  647. data/js/node_modules/@waves/waves-transactions/dist/defaultVersions.d.ts +18 -0
  648. data/js/node_modules/@waves/waves-transactions/dist/defaultVersions.js +22 -0
  649. data/js/node_modules/@waves/waves-transactions/dist/defaultVersions.js.map +1 -0
  650. data/js/node_modules/@waves/waves-transactions/dist/general.d.ts +68 -0
  651. data/js/node_modules/@waves/waves-transactions/dist/general.js +135 -0
  652. data/js/node_modules/@waves/waves-transactions/dist/general.js.map +1 -0
  653. data/js/node_modules/@waves/waves-transactions/dist/generic.d.ts +28 -0
  654. data/js/node_modules/@waves/waves-transactions/dist/generic.js +88 -0
  655. data/js/node_modules/@waves/waves-transactions/dist/generic.js.map +1 -0
  656. data/js/node_modules/@waves/waves-transactions/dist/index.d.ts +37 -0
  657. data/js/node_modules/@waves/waves-transactions/dist/index.js +98 -0
  658. data/js/node_modules/@waves/waves-transactions/dist/index.js.map +1 -0
  659. data/js/node_modules/@waves/waves-transactions/dist/make-tx.d.ts +50 -0
  660. data/js/node_modules/@waves/waves-transactions/dist/make-tx.js +106 -0
  661. data/js/node_modules/@waves/waves-transactions/dist/make-tx.js.map +1 -0
  662. data/js/node_modules/@waves/waves-transactions/dist/min/waves-transactions.min.js +26 -0
  663. data/js/node_modules/@waves/waves-transactions/dist/nodeInteraction.d.ts +116 -0
  664. data/js/node_modules/@waves/waves-transactions/dist/nodeInteraction.js +277 -0
  665. data/js/node_modules/@waves/waves-transactions/dist/nodeInteraction.js.map +1 -0
  666. data/js/node_modules/@waves/waves-transactions/dist/proto-serialize.d.ts +62 -0
  667. data/js/node_modules/@waves/waves-transactions/dist/proto-serialize.js +514 -0
  668. data/js/node_modules/@waves/waves-transactions/dist/proto-serialize.js.map +1 -0
  669. data/js/node_modules/@waves/waves-transactions/dist/requests/auth.d.ts +7 -0
  670. data/js/node_modules/@waves/waves-transactions/dist/requests/auth.js +31 -0
  671. data/js/node_modules/@waves/waves-transactions/dist/requests/auth.js.map +1 -0
  672. data/js/node_modules/@waves/waves-transactions/dist/requests/cancel-order.d.ts +7 -0
  673. data/js/node_modules/@waves/waves-transactions/dist/requests/cancel-order.js +29 -0
  674. data/js/node_modules/@waves/waves-transactions/dist/requests/cancel-order.js.map +1 -0
  675. data/js/node_modules/@waves/waves-transactions/dist/requests/custom-data.d.ts +40 -0
  676. data/js/node_modules/@waves/waves-transactions/dist/requests/custom-data.js +37 -0
  677. data/js/node_modules/@waves/waves-transactions/dist/requests/custom-data.js.map +1 -0
  678. data/js/node_modules/@waves/waves-transactions/dist/requests/order.d.ts +50 -0
  679. data/js/node_modules/@waves/waves-transactions/dist/requests/order.js +62 -0
  680. data/js/node_modules/@waves/waves-transactions/dist/requests/order.js.map +1 -0
  681. data/js/node_modules/@waves/waves-transactions/dist/requests/wavesAuth.d.ts +7 -0
  682. data/js/node_modules/@waves/waves-transactions/dist/requests/wavesAuth.js +31 -0
  683. data/js/node_modules/@waves/waves-transactions/dist/requests/wavesAuth.js.map +1 -0
  684. data/js/node_modules/@waves/waves-transactions/dist/seedUtils/index.d.ts +21 -0
  685. data/js/node_modules/@waves/waves-transactions/dist/seedUtils/index.js +85 -0
  686. data/js/node_modules/@waves/waves-transactions/dist/seedUtils/index.js.map +1 -0
  687. data/js/node_modules/@waves/waves-transactions/dist/transactions/alias.d.ts +8 -0
  688. data/js/node_modules/@waves/waves-transactions/dist/transactions/alias.js +35 -0
  689. data/js/node_modules/@waves/waves-transactions/dist/transactions/alias.js.map +1 -0
  690. data/js/node_modules/@waves/waves-transactions/dist/transactions/burn.d.ts +8 -0
  691. data/js/node_modules/@waves/waves-transactions/dist/transactions/burn.js +35 -0
  692. data/js/node_modules/@waves/waves-transactions/dist/transactions/burn.js.map +1 -0
  693. data/js/node_modules/@waves/waves-transactions/dist/transactions/cancel-lease.d.ts +8 -0
  694. data/js/node_modules/@waves/waves-transactions/dist/transactions/cancel-lease.js +34 -0
  695. data/js/node_modules/@waves/waves-transactions/dist/transactions/cancel-lease.js.map +1 -0
  696. data/js/node_modules/@waves/waves-transactions/dist/transactions/data.d.ts +5 -0
  697. data/js/node_modules/@waves/waves-transactions/dist/transactions/data.js +112 -0
  698. data/js/node_modules/@waves/waves-transactions/dist/transactions/data.js.map +1 -0
  699. data/js/node_modules/@waves/waves-transactions/dist/transactions/exchange.d.ts +7 -0
  700. data/js/node_modules/@waves/waves-transactions/dist/transactions/exchange.js +39 -0
  701. data/js/node_modules/@waves/waves-transactions/dist/transactions/exchange.js.map +1 -0
  702. data/js/node_modules/@waves/waves-transactions/dist/transactions/invoke-expression.d.ts +0 -0
  703. data/js/node_modules/@waves/waves-transactions/dist/transactions/invoke-expression.js +52 -0
  704. data/js/node_modules/@waves/waves-transactions/dist/transactions/invoke-expression.js.map +1 -0
  705. data/js/node_modules/@waves/waves-transactions/dist/transactions/invoke-script.d.ts +8 -0
  706. data/js/node_modules/@waves/waves-transactions/dist/transactions/invoke-script.js +43 -0
  707. data/js/node_modules/@waves/waves-transactions/dist/transactions/invoke-script.js.map +1 -0
  708. data/js/node_modules/@waves/waves-transactions/dist/transactions/issue.d.ts +8 -0
  709. data/js/node_modules/@waves/waves-transactions/dist/transactions/issue.js +42 -0
  710. data/js/node_modules/@waves/waves-transactions/dist/transactions/issue.js.map +1 -0
  711. data/js/node_modules/@waves/waves-transactions/dist/transactions/lease.d.ts +8 -0
  712. data/js/node_modules/@waves/waves-transactions/dist/transactions/lease.js +35 -0
  713. data/js/node_modules/@waves/waves-transactions/dist/transactions/lease.js.map +1 -0
  714. data/js/node_modules/@waves/waves-transactions/dist/transactions/mass-transfer.d.ts +8 -0
  715. data/js/node_modules/@waves/waves-transactions/dist/transactions/mass-transfer.js +39 -0
  716. data/js/node_modules/@waves/waves-transactions/dist/transactions/mass-transfer.js.map +1 -0
  717. data/js/node_modules/@waves/waves-transactions/dist/transactions/reissue.d.ts +8 -0
  718. data/js/node_modules/@waves/waves-transactions/dist/transactions/reissue.js +36 -0
  719. data/js/node_modules/@waves/waves-transactions/dist/transactions/reissue.js.map +1 -0
  720. data/js/node_modules/@waves/waves-transactions/dist/transactions/set-asset-script.d.ts +8 -0
  721. data/js/node_modules/@waves/waves-transactions/dist/transactions/set-asset-script.js +37 -0
  722. data/js/node_modules/@waves/waves-transactions/dist/transactions/set-asset-script.js.map +1 -0
  723. data/js/node_modules/@waves/waves-transactions/dist/transactions/set-script.d.ts +8 -0
  724. data/js/node_modules/@waves/waves-transactions/dist/transactions/set-script.js +38 -0
  725. data/js/node_modules/@waves/waves-transactions/dist/transactions/set-script.js.map +1 -0
  726. data/js/node_modules/@waves/waves-transactions/dist/transactions/sponsorship.d.ts +8 -0
  727. data/js/node_modules/@waves/waves-transactions/dist/transactions/sponsorship.js +35 -0
  728. data/js/node_modules/@waves/waves-transactions/dist/transactions/sponsorship.js.map +1 -0
  729. data/js/node_modules/@waves/waves-transactions/dist/transactions/transfer.d.ts +8 -0
  730. data/js/node_modules/@waves/waves-transactions/dist/transactions/transfer.js +38 -0
  731. data/js/node_modules/@waves/waves-transactions/dist/transactions/transfer.js.map +1 -0
  732. data/js/node_modules/@waves/waves-transactions/dist/transactions/update-asset-info.d.ts +8 -0
  733. data/js/node_modules/@waves/waves-transactions/dist/transactions/update-asset-info.js +35 -0
  734. data/js/node_modules/@waves/waves-transactions/dist/transactions/update-asset-info.js.map +1 -0
  735. data/js/node_modules/@waves/waves-transactions/dist/transactions.d.ts +277 -0
  736. data/js/node_modules/@waves/waves-transactions/dist/transactions.js +3 -0
  737. data/js/node_modules/@waves/waves-transactions/dist/transactions.js.map +1 -0
  738. data/js/node_modules/@waves/waves-transactions/dist/types.d.ts +11 -0
  739. data/js/node_modules/@waves/waves-transactions/dist/types.js +6 -0
  740. data/js/node_modules/@waves/waves-transactions/dist/types.js.map +1 -0
  741. data/js/node_modules/@waves/waves-transactions/dist/validators/alias.d.ts +1 -0
  742. data/js/node_modules/@waves/waves-transactions/dist/validators/alias.js +17 -0
  743. data/js/node_modules/@waves/waves-transactions/dist/validators/alias.js.map +1 -0
  744. data/js/node_modules/@waves/waves-transactions/dist/validators/auth.d.ts +1 -0
  745. data/js/node_modules/@waves/waves-transactions/dist/validators/auth.js +10 -0
  746. data/js/node_modules/@waves/waves-transactions/dist/validators/auth.js.map +1 -0
  747. data/js/node_modules/@waves/waves-transactions/dist/validators/burn.d.ts +1 -0
  748. data/js/node_modules/@waves/waves-transactions/dist/validators/burn.js +18 -0
  749. data/js/node_modules/@waves/waves-transactions/dist/validators/burn.js.map +1 -0
  750. data/js/node_modules/@waves/waves-transactions/dist/validators/cancel-lease.d.ts +1 -0
  751. data/js/node_modules/@waves/waves-transactions/dist/validators/cancel-lease.js +17 -0
  752. data/js/node_modules/@waves/waves-transactions/dist/validators/cancel-lease.js.map +1 -0
  753. data/js/node_modules/@waves/waves-transactions/dist/validators/cancel-order.d.ts +1 -0
  754. data/js/node_modules/@waves/waves-transactions/dist/validators/cancel-order.js +12 -0
  755. data/js/node_modules/@waves/waves-transactions/dist/validators/cancel-order.js.map +1 -0
  756. data/js/node_modules/@waves/waves-transactions/dist/validators/custom-data.d.ts +1 -0
  757. data/js/node_modules/@waves/waves-transactions/dist/validators/custom-data.js +16 -0
  758. data/js/node_modules/@waves/waves-transactions/dist/validators/custom-data.js.map +1 -0
  759. data/js/node_modules/@waves/waves-transactions/dist/validators/data.d.ts +2 -0
  760. data/js/node_modules/@waves/waves-transactions/dist/validators/data.js +18 -0
  761. data/js/node_modules/@waves/waves-transactions/dist/validators/data.js.map +1 -0
  762. data/js/node_modules/@waves/waves-transactions/dist/validators/exchange.d.ts +1 -0
  763. data/js/node_modules/@waves/waves-transactions/dist/validators/exchange.js +22 -0
  764. data/js/node_modules/@waves/waves-transactions/dist/validators/exchange.js.map +1 -0
  765. data/js/node_modules/@waves/waves-transactions/dist/validators/index.d.ts +24 -0
  766. data/js/node_modules/@waves/waves-transactions/dist/validators/index.js +60 -0
  767. data/js/node_modules/@waves/waves-transactions/dist/validators/index.js.map +1 -0
  768. data/js/node_modules/@waves/waves-transactions/dist/validators/invoke-expression.d.ts +0 -0
  769. data/js/node_modules/@waves/waves-transactions/dist/validators/invoke-expression.js +33 -0
  770. data/js/node_modules/@waves/waves-transactions/dist/validators/invoke-expression.js.map +1 -0
  771. data/js/node_modules/@waves/waves-transactions/dist/validators/invoke-script.d.ts +1 -0
  772. data/js/node_modules/@waves/waves-transactions/dist/validators/invoke-script.js +20 -0
  773. data/js/node_modules/@waves/waves-transactions/dist/validators/invoke-script.js.map +1 -0
  774. data/js/node_modules/@waves/waves-transactions/dist/validators/issue.d.ts +1 -0
  775. data/js/node_modules/@waves/waves-transactions/dist/validators/issue.js +22 -0
  776. data/js/node_modules/@waves/waves-transactions/dist/validators/issue.js.map +1 -0
  777. data/js/node_modules/@waves/waves-transactions/dist/validators/lease.d.ts +1 -0
  778. data/js/node_modules/@waves/waves-transactions/dist/validators/lease.js +17 -0
  779. data/js/node_modules/@waves/waves-transactions/dist/validators/lease.js.map +1 -0
  780. data/js/node_modules/@waves/waves-transactions/dist/validators/mass-transfer.d.ts +1 -0
  781. data/js/node_modules/@waves/waves-transactions/dist/validators/mass-transfer.js +18 -0
  782. data/js/node_modules/@waves/waves-transactions/dist/validators/mass-transfer.js.map +1 -0
  783. data/js/node_modules/@waves/waves-transactions/dist/validators/order.d.ts +1 -0
  784. data/js/node_modules/@waves/waves-transactions/dist/validators/order.js +34 -0
  785. data/js/node_modules/@waves/waves-transactions/dist/validators/order.js.map +1 -0
  786. data/js/node_modules/@waves/waves-transactions/dist/validators/reissue.d.ts +1 -0
  787. data/js/node_modules/@waves/waves-transactions/dist/validators/reissue.js +19 -0
  788. data/js/node_modules/@waves/waves-transactions/dist/validators/reissue.js.map +1 -0
  789. data/js/node_modules/@waves/waves-transactions/dist/validators/set-asset-script.d.ts +1 -0
  790. data/js/node_modules/@waves/waves-transactions/dist/validators/set-asset-script.js +18 -0
  791. data/js/node_modules/@waves/waves-transactions/dist/validators/set-asset-script.js.map +1 -0
  792. data/js/node_modules/@waves/waves-transactions/dist/validators/set-script.d.ts +1 -0
  793. data/js/node_modules/@waves/waves-transactions/dist/validators/set-script.js +17 -0
  794. data/js/node_modules/@waves/waves-transactions/dist/validators/set-script.js.map +1 -0
  795. data/js/node_modules/@waves/waves-transactions/dist/validators/sponsorship.d.ts +1 -0
  796. data/js/node_modules/@waves/waves-transactions/dist/validators/sponsorship.js +17 -0
  797. data/js/node_modules/@waves/waves-transactions/dist/validators/sponsorship.js.map +1 -0
  798. data/js/node_modules/@waves/waves-transactions/dist/validators/transfer.d.ts +1 -0
  799. data/js/node_modules/@waves/waves-transactions/dist/validators/transfer.js +20 -0
  800. data/js/node_modules/@waves/waves-transactions/dist/validators/transfer.js.map +1 -0
  801. data/js/node_modules/@waves/waves-transactions/dist/validators/update-asset-info.d.ts +1 -0
  802. data/js/node_modules/@waves/waves-transactions/dist/validators/update-asset-info.js +18 -0
  803. data/js/node_modules/@waves/waves-transactions/dist/validators/update-asset-info.js.map +1 -0
  804. data/js/node_modules/@waves/waves-transactions/dist/validators/validators.d.ts +52 -0
  805. data/js/node_modules/@waves/waves-transactions/dist/validators/validators.js +160 -0
  806. data/js/node_modules/@waves/waves-transactions/dist/validators/validators.js.map +1 -0
  807. data/js/node_modules/@waves/waves-transactions/dist/validators/wavesAuth.d.ts +1 -0
  808. data/js/node_modules/@waves/waves-transactions/dist/validators/wavesAuth.js +10 -0
  809. data/js/node_modules/@waves/waves-transactions/dist/validators/wavesAuth.js.map +1 -0
  810. data/js/node_modules/@waves/waves-transactions/package.json +83 -0
  811. data/js/node_modules/@waves/waves-transactions/src/defaultVersions.ts +18 -0
  812. data/js/node_modules/@waves/waves-transactions/src/general.ts +165 -0
  813. data/js/node_modules/@waves/waves-transactions/src/generic.ts +88 -0
  814. data/js/node_modules/@waves/waves-transactions/src/index.ts +87 -0
  815. data/js/node_modules/@waves/waves-transactions/src/make-tx.ts +179 -0
  816. data/js/node_modules/@waves/waves-transactions/src/nodeInteraction.ts +297 -0
  817. data/js/node_modules/@waves/waves-transactions/src/proto-serialize.ts +571 -0
  818. data/js/node_modules/@waves/waves-transactions/src/requests/auth.ts +42 -0
  819. data/js/node_modules/@waves/waves-transactions/src/requests/cancel-order.ts +37 -0
  820. data/js/node_modules/@waves/waves-transactions/src/requests/custom-data.ts +73 -0
  821. data/js/node_modules/@waves/waves-transactions/src/requests/order.ts +121 -0
  822. data/js/node_modules/@waves/waves-transactions/src/requests/wavesAuth.ts +40 -0
  823. data/js/node_modules/@waves/waves-transactions/src/seedUtils/index.ts +124 -0
  824. data/js/node_modules/@waves/waves-transactions/src/transactions/alias.ts +46 -0
  825. data/js/node_modules/@waves/waves-transactions/src/transactions/burn.ts +45 -0
  826. data/js/node_modules/@waves/waves-transactions/src/transactions/cancel-lease.ts +44 -0
  827. data/js/node_modules/@waves/waves-transactions/src/transactions/data.ts +122 -0
  828. data/js/node_modules/@waves/waves-transactions/src/transactions/exchange.ts +47 -0
  829. data/js/node_modules/@waves/waves-transactions/src/transactions/invoke-expression.ts +50 -0
  830. data/js/node_modules/@waves/waves-transactions/src/transactions/invoke-script.ts +54 -0
  831. data/js/node_modules/@waves/waves-transactions/src/transactions/issue.ts +52 -0
  832. data/js/node_modules/@waves/waves-transactions/src/transactions/lease.ts +45 -0
  833. data/js/node_modules/@waves/waves-transactions/src/transactions/mass-transfer.ts +55 -0
  834. data/js/node_modules/@waves/waves-transactions/src/transactions/reissue.ts +46 -0
  835. data/js/node_modules/@waves/waves-transactions/src/transactions/set-asset-script.ts +57 -0
  836. data/js/node_modules/@waves/waves-transactions/src/transactions/set-script.ts +54 -0
  837. data/js/node_modules/@waves/waves-transactions/src/transactions/sponsorship.ts +45 -0
  838. data/js/node_modules/@waves/waves-transactions/src/transactions/transfer.ts +55 -0
  839. data/js/node_modules/@waves/waves-transactions/src/transactions/update-asset-info.ts +44 -0
  840. data/js/node_modules/@waves/waves-transactions/src/transactions.ts +352 -0
  841. data/js/node_modules/@waves/waves-transactions/src/types.ts +12 -0
  842. data/js/node_modules/@waves/waves-transactions/src/validators/alias.ts +28 -0
  843. data/js/node_modules/@waves/waves-transactions/src/validators/auth.ts +14 -0
  844. data/js/node_modules/@waves/waves-transactions/src/validators/burn.ts +29 -0
  845. data/js/node_modules/@waves/waves-transactions/src/validators/cancel-lease.ts +27 -0
  846. data/js/node_modules/@waves/waves-transactions/src/validators/cancel-order.ts +17 -0
  847. data/js/node_modules/@waves/waves-transactions/src/validators/custom-data.ts +40 -0
  848. data/js/node_modules/@waves/waves-transactions/src/validators/data.ts +33 -0
  849. data/js/node_modules/@waves/waves-transactions/src/validators/exchange.ts +36 -0
  850. data/js/node_modules/@waves/waves-transactions/src/validators/index.ts +50 -0
  851. data/js/node_modules/@waves/waves-transactions/src/validators/invoke-expression.ts +31 -0
  852. data/js/node_modules/@waves/waves-transactions/src/validators/invoke-script.ts +64 -0
  853. data/js/node_modules/@waves/waves-transactions/src/validators/issue.ts +41 -0
  854. data/js/node_modules/@waves/waves-transactions/src/validators/lease.ts +29 -0
  855. data/js/node_modules/@waves/waves-transactions/src/validators/mass-transfer.ts +47 -0
  856. data/js/node_modules/@waves/waves-transactions/src/validators/order.ts +68 -0
  857. data/js/node_modules/@waves/waves-transactions/src/validators/reissue.ts +31 -0
  858. data/js/node_modules/@waves/waves-transactions/src/validators/set-asset-script.ts +28 -0
  859. data/js/node_modules/@waves/waves-transactions/src/validators/set-script.ts +28 -0
  860. data/js/node_modules/@waves/waves-transactions/src/validators/sponsorship.ts +28 -0
  861. data/js/node_modules/@waves/waves-transactions/src/validators/transfer.ts +32 -0
  862. data/js/node_modules/@waves/waves-transactions/src/validators/update-asset-info.ts +32 -0
  863. data/js/node_modules/@waves/waves-transactions/src/validators/validators.ts +306 -0
  864. data/js/node_modules/@waves/waves-transactions/src/validators/wavesAuth.ts +15 -0
  865. data/js/node_modules/asynckit/LICENSE +21 -0
  866. data/js/node_modules/asynckit/README.md +233 -0
  867. data/js/node_modules/asynckit/bench.js +76 -0
  868. data/js/node_modules/asynckit/index.js +6 -0
  869. data/js/node_modules/asynckit/lib/abort.js +29 -0
  870. data/js/node_modules/asynckit/lib/async.js +34 -0
  871. data/js/node_modules/asynckit/lib/defer.js +26 -0
  872. data/js/node_modules/asynckit/lib/iterate.js +75 -0
  873. data/js/node_modules/asynckit/lib/readable_asynckit.js +91 -0
  874. data/js/node_modules/asynckit/lib/readable_parallel.js +25 -0
  875. data/js/node_modules/asynckit/lib/readable_serial.js +25 -0
  876. data/js/node_modules/asynckit/lib/readable_serial_ordered.js +29 -0
  877. data/js/node_modules/asynckit/lib/state.js +37 -0
  878. data/js/node_modules/asynckit/lib/streamify.js +141 -0
  879. data/js/node_modules/asynckit/lib/terminator.js +29 -0
  880. data/js/node_modules/asynckit/package.json +63 -0
  881. data/js/node_modules/asynckit/parallel.js +43 -0
  882. data/js/node_modules/asynckit/serial.js +17 -0
  883. data/js/node_modules/asynckit/serialOrdered.js +75 -0
  884. data/js/node_modules/asynckit/stream.js +21 -0
  885. data/js/node_modules/axios/CHANGELOG.md +413 -0
  886. data/js/node_modules/axios/LICENSE +19 -0
  887. data/js/node_modules/axios/README.md +709 -0
  888. data/js/node_modules/axios/UPGRADE_GUIDE.md +162 -0
  889. data/js/node_modules/axios/dist/axios.js +1715 -0
  890. data/js/node_modules/axios/dist/axios.map +1 -0
  891. data/js/node_modules/axios/dist/axios.min.js +3 -0
  892. data/js/node_modules/axios/dist/axios.min.map +1 -0
  893. data/js/node_modules/axios/index.d.ts +157 -0
  894. data/js/node_modules/axios/index.js +1 -0
  895. data/js/node_modules/axios/lib/adapters/README.md +37 -0
  896. data/js/node_modules/axios/lib/adapters/http.js +279 -0
  897. data/js/node_modules/axios/lib/adapters/xhr.js +180 -0
  898. data/js/node_modules/axios/lib/axios.js +53 -0
  899. data/js/node_modules/axios/lib/cancel/Cancel.js +19 -0
  900. data/js/node_modules/axios/lib/cancel/CancelToken.js +57 -0
  901. data/js/node_modules/axios/lib/cancel/isCancel.js +5 -0
  902. data/js/node_modules/axios/lib/core/Axios.js +94 -0
  903. data/js/node_modules/axios/lib/core/InterceptorManager.js +52 -0
  904. data/js/node_modules/axios/lib/core/README.md +7 -0
  905. data/js/node_modules/axios/lib/core/buildFullPath.js +20 -0
  906. data/js/node_modules/axios/lib/core/createError.js +18 -0
  907. data/js/node_modules/axios/lib/core/dispatchRequest.js +79 -0
  908. data/js/node_modules/axios/lib/core/enhanceError.js +42 -0
  909. data/js/node_modules/axios/lib/core/mergeConfig.js +73 -0
  910. data/js/node_modules/axios/lib/core/settle.js +25 -0
  911. data/js/node_modules/axios/lib/core/transformData.js +20 -0
  912. data/js/node_modules/axios/lib/defaults.js +97 -0
  913. data/js/node_modules/axios/lib/helpers/README.md +7 -0
  914. data/js/node_modules/axios/lib/helpers/bind.js +11 -0
  915. data/js/node_modules/axios/lib/helpers/buildURL.js +71 -0
  916. data/js/node_modules/axios/lib/helpers/combineURLs.js +14 -0
  917. data/js/node_modules/axios/lib/helpers/cookies.js +53 -0
  918. data/js/node_modules/axios/lib/helpers/deprecatedMethod.js +24 -0
  919. data/js/node_modules/axios/lib/helpers/isAbsoluteURL.js +14 -0
  920. data/js/node_modules/axios/lib/helpers/isURLSameOrigin.js +68 -0
  921. data/js/node_modules/axios/lib/helpers/normalizeHeaderName.js +12 -0
  922. data/js/node_modules/axios/lib/helpers/parseHeaders.js +53 -0
  923. data/js/node_modules/axios/lib/helpers/spread.js +27 -0
  924. data/js/node_modules/axios/lib/utils.js +344 -0
  925. data/js/node_modules/axios/package.json +84 -0
  926. data/js/node_modules/base64-js/LICENSE +21 -0
  927. data/js/node_modules/base64-js/README.md +34 -0
  928. data/js/node_modules/base64-js/base64js.min.js +1 -0
  929. data/js/node_modules/base64-js/index.d.ts +3 -0
  930. data/js/node_modules/base64-js/index.js +150 -0
  931. data/js/node_modules/base64-js/package.json +47 -0
  932. data/js/node_modules/bignumber.js/CHANGELOG.md +290 -0
  933. data/js/node_modules/bignumber.js/LICENCE.md +26 -0
  934. data/js/node_modules/bignumber.js/README.md +286 -0
  935. data/js/node_modules/bignumber.js/bignumber.d.ts +1831 -0
  936. data/js/node_modules/bignumber.js/bignumber.js +2926 -0
  937. data/js/node_modules/bignumber.js/bignumber.mjs +2889 -0
  938. data/js/node_modules/bignumber.js/doc/API.html +2249 -0
  939. data/js/node_modules/bignumber.js/package.json +50 -0
  940. data/js/node_modules/combined-stream/License +19 -0
  941. data/js/node_modules/combined-stream/Readme.md +138 -0
  942. data/js/node_modules/combined-stream/lib/combined_stream.js +208 -0
  943. data/js/node_modules/combined-stream/package.json +25 -0
  944. data/js/node_modules/combined-stream/yarn.lock +17 -0
  945. data/js/node_modules/debug/CHANGELOG.md +395 -0
  946. data/js/node_modules/debug/LICENSE +19 -0
  947. data/js/node_modules/debug/Makefile +58 -0
  948. data/js/node_modules/debug/README.md +368 -0
  949. data/js/node_modules/debug/karma.conf.js +70 -0
  950. data/js/node_modules/debug/node.js +1 -0
  951. data/js/node_modules/debug/package.json +43 -0
  952. data/js/node_modules/debug/src/browser.js +195 -0
  953. data/js/node_modules/debug/src/debug.js +225 -0
  954. data/js/node_modules/debug/src/index.js +10 -0
  955. data/js/node_modules/debug/src/node.js +186 -0
  956. data/js/node_modules/delayed-stream/License +19 -0
  957. data/js/node_modules/delayed-stream/Makefile +7 -0
  958. data/js/node_modules/delayed-stream/Readme.md +141 -0
  959. data/js/node_modules/delayed-stream/lib/delayed_stream.js +107 -0
  960. data/js/node_modules/delayed-stream/package.json +27 -0
  961. data/js/node_modules/follow-redirects/LICENSE +18 -0
  962. data/js/node_modules/follow-redirects/README.md +155 -0
  963. data/js/node_modules/follow-redirects/http.js +1 -0
  964. data/js/node_modules/follow-redirects/https.js +1 -0
  965. data/js/node_modules/follow-redirects/index.js +322 -0
  966. data/js/node_modules/follow-redirects/package.json +60 -0
  967. data/js/node_modules/form-data/License +19 -0
  968. data/js/node_modules/form-data/README.md.bak +356 -0
  969. data/js/node_modules/form-data/Readme.md +356 -0
  970. data/js/node_modules/form-data/index.d.ts +62 -0
  971. data/js/node_modules/form-data/lib/browser.js +2 -0
  972. data/js/node_modules/form-data/lib/form_data.js +498 -0
  973. data/js/node_modules/form-data/lib/populate.js +10 -0
  974. data/js/node_modules/form-data/package.json +68 -0
  975. data/js/node_modules/js-sha3/CHANGELOG.md +106 -0
  976. data/js/node_modules/js-sha3/LICENSE.txt +20 -0
  977. data/js/node_modules/js-sha3/README.md +241 -0
  978. data/js/node_modules/js-sha3/build/sha3.min.js +9 -0
  979. data/js/node_modules/js-sha3/index.d.ts +317 -0
  980. data/js/node_modules/js-sha3/package.json +45 -0
  981. data/js/node_modules/js-sha3/src/sha3.js +656 -0
  982. data/js/node_modules/long/LICENSE +202 -0
  983. data/js/node_modules/long/README.md +246 -0
  984. data/js/node_modules/long/dist/long.js +2 -0
  985. data/js/node_modules/long/dist/long.js.map +1 -0
  986. data/js/node_modules/long/index.js +1 -0
  987. data/js/node_modules/long/package.json +34 -0
  988. data/js/node_modules/long/src/long.js +1323 -0
  989. data/js/node_modules/mime-db/HISTORY.md +507 -0
  990. data/js/node_modules/mime-db/LICENSE +23 -0
  991. data/js/node_modules/mime-db/README.md +100 -0
  992. data/js/node_modules/mime-db/db.json +8519 -0
  993. data/js/node_modules/mime-db/index.js +12 -0
  994. data/js/node_modules/mime-db/package.json +60 -0
  995. data/js/node_modules/mime-types/HISTORY.md +397 -0
  996. data/js/node_modules/mime-types/LICENSE +23 -0
  997. data/js/node_modules/mime-types/README.md +113 -0
  998. data/js/node_modules/mime-types/index.js +188 -0
  999. data/js/node_modules/mime-types/package.json +44 -0
  1000. data/js/node_modules/ms/index.js +152 -0
  1001. data/js/node_modules/ms/license.md +21 -0
  1002. data/js/node_modules/ms/package.json +37 -0
  1003. data/js/node_modules/ms/readme.md +51 -0
  1004. data/js/node_modules/node-fetch/LICENSE.md +22 -0
  1005. data/js/node_modules/node-fetch/README.md +633 -0
  1006. data/js/node_modules/node-fetch/browser.js +25 -0
  1007. data/js/node_modules/node-fetch/lib/index.es.js +1781 -0
  1008. data/js/node_modules/node-fetch/lib/index.js +1790 -0
  1009. data/js/node_modules/node-fetch/lib/index.mjs +1779 -0
  1010. data/js/node_modules/node-fetch/package.json +89 -0
  1011. data/js/node_modules/node-forge/CHANGELOG.md +211 -0
  1012. data/js/node_modules/node-forge/LICENSE +331 -0
  1013. data/js/node_modules/node-forge/README.md +2097 -0
  1014. data/js/node_modules/node-forge/dist/forge.all.min.js +2 -0
  1015. data/js/node_modules/node-forge/dist/forge.all.min.js.map +1 -0
  1016. data/js/node_modules/node-forge/dist/forge.min.js +2 -0
  1017. data/js/node_modules/node-forge/dist/forge.min.js.map +1 -0
  1018. data/js/node_modules/node-forge/dist/prime.worker.min.js +2 -0
  1019. data/js/node_modules/node-forge/dist/prime.worker.min.js.map +1 -0
  1020. data/js/node_modules/node-forge/flash/README.md +48 -0
  1021. data/js/node_modules/node-forge/flash/package.json +28 -0
  1022. data/js/node_modules/node-forge/flash/swf/SocketPool.swf +0 -0
  1023. data/js/node_modules/node-forge/lib/aes.js +1091 -0
  1024. data/js/node_modules/node-forge/lib/aesCipherSuites.js +282 -0
  1025. data/js/node_modules/node-forge/lib/asn1.js +1408 -0
  1026. data/js/node_modules/node-forge/lib/baseN.js +186 -0
  1027. data/js/node_modules/node-forge/lib/cipher.js +230 -0
  1028. data/js/node_modules/node-forge/lib/cipherModes.js +987 -0
  1029. data/js/node_modules/node-forge/lib/debug.js +78 -0
  1030. data/js/node_modules/node-forge/lib/des.js +496 -0
  1031. data/js/node_modules/node-forge/lib/ed25519.js +996 -0
  1032. data/js/node_modules/node-forge/lib/forge.js +13 -0
  1033. data/js/node_modules/node-forge/lib/form.js +149 -0
  1034. data/js/node_modules/node-forge/lib/hmac.js +146 -0
  1035. data/js/node_modules/node-forge/lib/http.js +1364 -0
  1036. data/js/node_modules/node-forge/lib/index.all.js +16 -0
  1037. data/js/node_modules/node-forge/lib/index.js +35 -0
  1038. data/js/node_modules/node-forge/lib/jsbn.js +1264 -0
  1039. data/js/node_modules/node-forge/lib/kem.js +168 -0
  1040. data/js/node_modules/node-forge/lib/log.js +317 -0
  1041. data/js/node_modules/node-forge/lib/md.all.js +13 -0
  1042. data/js/node_modules/node-forge/lib/md.js +11 -0
  1043. data/js/node_modules/node-forge/lib/md5.js +289 -0
  1044. data/js/node_modules/node-forge/lib/mgf.js +12 -0
  1045. data/js/node_modules/node-forge/lib/mgf1.js +57 -0
  1046. data/js/node_modules/node-forge/lib/oids.js +163 -0
  1047. data/js/node_modules/node-forge/lib/pbe.js +1023 -0
  1048. data/js/node_modules/node-forge/lib/pbkdf2.js +211 -0
  1049. data/js/node_modules/node-forge/lib/pem.js +230 -0
  1050. data/js/node_modules/node-forge/lib/pkcs1.js +276 -0
  1051. data/js/node_modules/node-forge/lib/pkcs12.js +1074 -0
  1052. data/js/node_modules/node-forge/lib/pkcs7.js +1257 -0
  1053. data/js/node_modules/node-forge/lib/pkcs7asn1.js +409 -0
  1054. data/js/node_modules/node-forge/lib/pki.js +102 -0
  1055. data/js/node_modules/node-forge/lib/prime.js +297 -0
  1056. data/js/node_modules/node-forge/lib/prime.worker.js +168 -0
  1057. data/js/node_modules/node-forge/lib/prng.js +419 -0
  1058. data/js/node_modules/node-forge/lib/pss.js +241 -0
  1059. data/js/node_modules/node-forge/lib/random.js +191 -0
  1060. data/js/node_modules/node-forge/lib/rc2.js +410 -0
  1061. data/js/node_modules/node-forge/lib/rsa.js +1858 -0
  1062. data/js/node_modules/node-forge/lib/sha1.js +319 -0
  1063. data/js/node_modules/node-forge/lib/sha256.js +327 -0
  1064. data/js/node_modules/node-forge/lib/sha512.js +561 -0
  1065. data/js/node_modules/node-forge/lib/socket.js +287 -0
  1066. data/js/node_modules/node-forge/lib/ssh.js +236 -0
  1067. data/js/node_modules/node-forge/lib/task.js +725 -0
  1068. data/js/node_modules/node-forge/lib/tls.js +4282 -0
  1069. data/js/node_modules/node-forge/lib/tlssocket.js +249 -0
  1070. data/js/node_modules/node-forge/lib/util.js +2993 -0
  1071. data/js/node_modules/node-forge/lib/x509.js +3333 -0
  1072. data/js/node_modules/node-forge/lib/xhr.js +736 -0
  1073. data/js/node_modules/node-forge/package.json +120 -0
  1074. data/js/node_modules/protobufjs/CHANGELOG.md +1027 -0
  1075. data/js/node_modules/protobufjs/LICENSE +39 -0
  1076. data/js/node_modules/protobufjs/README.md +905 -0
  1077. data/js/node_modules/protobufjs/bin/pbjs +6 -0
  1078. data/js/node_modules/protobufjs/bin/pbts +6 -0
  1079. data/js/node_modules/protobufjs/cli/LICENSE +33 -0
  1080. data/js/node_modules/protobufjs/cli/README.md +174 -0
  1081. data/js/node_modules/protobufjs/cli/bin/pbjs +6 -0
  1082. data/js/node_modules/protobufjs/cli/bin/pbts +6 -0
  1083. data/js/node_modules/protobufjs/cli/index.d.ts +3 -0
  1084. data/js/node_modules/protobufjs/cli/index.js +3 -0
  1085. data/js/node_modules/protobufjs/cli/lib/tsd-jsdoc/LICENSE +21 -0
  1086. data/js/node_modules/protobufjs/cli/lib/tsd-jsdoc/README.md +23 -0
  1087. data/js/node_modules/protobufjs/cli/lib/tsd-jsdoc/plugin.js +21 -0
  1088. data/js/node_modules/protobufjs/cli/lib/tsd-jsdoc/publish.js +705 -0
  1089. data/js/node_modules/protobufjs/cli/lib/tsd-jsdoc.json +18 -0
  1090. data/js/node_modules/protobufjs/cli/package.json +8 -0
  1091. data/js/node_modules/protobufjs/cli/package.standalone.json +32 -0
  1092. data/js/node_modules/protobufjs/cli/pbjs.d.ts +9 -0
  1093. data/js/node_modules/protobufjs/cli/pbjs.js +330 -0
  1094. data/js/node_modules/protobufjs/cli/pbts.d.ts +9 -0
  1095. data/js/node_modules/protobufjs/cli/pbts.js +197 -0
  1096. data/js/node_modules/protobufjs/cli/targets/json-module.js +38 -0
  1097. data/js/node_modules/protobufjs/cli/targets/json.js +8 -0
  1098. data/js/node_modules/protobufjs/cli/targets/proto.js +326 -0
  1099. data/js/node_modules/protobufjs/cli/targets/proto2.js +10 -0
  1100. data/js/node_modules/protobufjs/cli/targets/proto3.js +10 -0
  1101. data/js/node_modules/protobufjs/cli/targets/static-module.js +29 -0
  1102. data/js/node_modules/protobufjs/cli/targets/static.js +711 -0
  1103. data/js/node_modules/protobufjs/cli/util.js +183 -0
  1104. data/js/node_modules/protobufjs/cli/wrappers/amd.js +7 -0
  1105. data/js/node_modules/protobufjs/cli/wrappers/closure.js +7 -0
  1106. data/js/node_modules/protobufjs/cli/wrappers/commonjs.js +7 -0
  1107. data/js/node_modules/protobufjs/cli/wrappers/default.js +15 -0
  1108. data/js/node_modules/protobufjs/cli/wrappers/es6.js +5 -0
  1109. data/js/node_modules/protobufjs/dist/README.md +31 -0
  1110. data/js/node_modules/protobufjs/dist/light/README.md +31 -0
  1111. data/js/node_modules/protobufjs/dist/light/protobuf.js +7322 -0
  1112. data/js/node_modules/protobufjs/dist/light/protobuf.js.map +1 -0
  1113. data/js/node_modules/protobufjs/dist/light/protobuf.min.js +8 -0
  1114. data/js/node_modules/protobufjs/dist/light/protobuf.min.js.map +1 -0
  1115. data/js/node_modules/protobufjs/dist/minimal/README.md +31 -0
  1116. data/js/node_modules/protobufjs/dist/minimal/protobuf.js +2714 -0
  1117. data/js/node_modules/protobufjs/dist/minimal/protobuf.js.map +1 -0
  1118. data/js/node_modules/protobufjs/dist/minimal/protobuf.min.js +8 -0
  1119. data/js/node_modules/protobufjs/dist/minimal/protobuf.min.js.map +1 -0
  1120. data/js/node_modules/protobufjs/dist/protobuf.js +8964 -0
  1121. data/js/node_modules/protobufjs/dist/protobuf.js.map +1 -0
  1122. data/js/node_modules/protobufjs/dist/protobuf.min.js +8 -0
  1123. data/js/node_modules/protobufjs/dist/protobuf.min.js.map +1 -0
  1124. data/js/node_modules/protobufjs/ext/debug/README.md +4 -0
  1125. data/js/node_modules/protobufjs/ext/debug/index.js +71 -0
  1126. data/js/node_modules/protobufjs/ext/descriptor/README.md +72 -0
  1127. data/js/node_modules/protobufjs/ext/descriptor/index.d.ts +191 -0
  1128. data/js/node_modules/protobufjs/ext/descriptor/index.js +1052 -0
  1129. data/js/node_modules/protobufjs/ext/descriptor/test.js +54 -0
  1130. data/js/node_modules/protobufjs/google/LICENSE +27 -0
  1131. data/js/node_modules/protobufjs/google/README.md +1 -0
  1132. data/js/node_modules/protobufjs/google/api/annotations.json +83 -0
  1133. data/js/node_modules/protobufjs/google/api/annotations.proto +11 -0
  1134. data/js/node_modules/protobufjs/google/api/http.json +86 -0
  1135. data/js/node_modules/protobufjs/google/api/http.proto +31 -0
  1136. data/js/node_modules/protobufjs/google/protobuf/api.json +118 -0
  1137. data/js/node_modules/protobufjs/google/protobuf/api.proto +34 -0
  1138. data/js/node_modules/protobufjs/google/protobuf/descriptor.json +739 -0
  1139. data/js/node_modules/protobufjs/google/protobuf/descriptor.proto +286 -0
  1140. data/js/node_modules/protobufjs/google/protobuf/source_context.json +20 -0
  1141. data/js/node_modules/protobufjs/google/protobuf/source_context.proto +7 -0
  1142. data/js/node_modules/protobufjs/google/protobuf/type.json +202 -0
  1143. data/js/node_modules/protobufjs/google/protobuf/type.proto +89 -0
  1144. data/js/node_modules/protobufjs/index.d.ts +2739 -0
  1145. data/js/node_modules/protobufjs/index.js +4 -0
  1146. data/js/node_modules/protobufjs/light.d.ts +2 -0
  1147. data/js/node_modules/protobufjs/light.js +4 -0
  1148. data/js/node_modules/protobufjs/minimal.d.ts +2 -0
  1149. data/js/node_modules/protobufjs/minimal.js +4 -0
  1150. data/js/node_modules/protobufjs/package-lock.json +7870 -0
  1151. data/js/node_modules/protobufjs/package.json +122 -0
  1152. data/js/node_modules/protobufjs/scripts/changelog.js +150 -0
  1153. data/js/node_modules/protobufjs/scripts/postinstall.js +35 -0
  1154. data/js/node_modules/protobufjs/src/common.js +399 -0
  1155. data/js/node_modules/protobufjs/src/converter.js +293 -0
  1156. data/js/node_modules/protobufjs/src/decoder.js +128 -0
  1157. data/js/node_modules/protobufjs/src/encoder.js +100 -0
  1158. data/js/node_modules/protobufjs/src/enum.js +181 -0
  1159. data/js/node_modules/protobufjs/src/field.js +374 -0
  1160. data/js/node_modules/protobufjs/src/index-light.js +104 -0
  1161. data/js/node_modules/protobufjs/src/index-minimal.js +36 -0
  1162. data/js/node_modules/protobufjs/src/index.js +12 -0
  1163. data/js/node_modules/protobufjs/src/mapfield.js +126 -0
  1164. data/js/node_modules/protobufjs/src/message.js +139 -0
  1165. data/js/node_modules/protobufjs/src/method.js +160 -0
  1166. data/js/node_modules/protobufjs/src/namespace.js +434 -0
  1167. data/js/node_modules/protobufjs/src/object.js +243 -0
  1168. data/js/node_modules/protobufjs/src/oneof.js +203 -0
  1169. data/js/node_modules/protobufjs/src/parse.js +820 -0
  1170. data/js/node_modules/protobufjs/src/reader.js +411 -0
  1171. data/js/node_modules/protobufjs/src/reader_buffer.js +51 -0
  1172. data/js/node_modules/protobufjs/src/root.js +363 -0
  1173. data/js/node_modules/protobufjs/src/roots.js +18 -0
  1174. data/js/node_modules/protobufjs/src/rpc/service.js +142 -0
  1175. data/js/node_modules/protobufjs/src/rpc.js +36 -0
  1176. data/js/node_modules/protobufjs/src/service.js +167 -0
  1177. data/js/node_modules/protobufjs/src/tokenize.js +403 -0
  1178. data/js/node_modules/protobufjs/src/type.js +589 -0
  1179. data/js/node_modules/protobufjs/src/types.js +196 -0
  1180. data/js/node_modules/protobufjs/src/typescript.jsdoc +15 -0
  1181. data/js/node_modules/protobufjs/src/util/longbits.js +200 -0
  1182. data/js/node_modules/protobufjs/src/util/minimal.js +421 -0
  1183. data/js/node_modules/protobufjs/src/util.js +212 -0
  1184. data/js/node_modules/protobufjs/src/verifier.js +177 -0
  1185. data/js/node_modules/protobufjs/src/wrappers.js +102 -0
  1186. data/js/node_modules/protobufjs/src/writer.js +465 -0
  1187. data/js/node_modules/protobufjs/src/writer_buffer.js +85 -0
  1188. data/js/node_modules/protobufjs/tsconfig.json +7 -0
  1189. data/js/node_modules/tr46/index.js +193 -0
  1190. data/js/node_modules/tr46/lib/mappingTable.json +1 -0
  1191. data/js/node_modules/tr46/package.json +31 -0
  1192. data/js/node_modules/typed-ts-events/dist/EventEmitter.d.ts +23 -0
  1193. data/js/node_modules/typed-ts-events/dist/events.js +145 -0
  1194. data/js/node_modules/typed-ts-events/dist/events.js.map +1 -0
  1195. data/js/node_modules/typed-ts-events/dist/events.min.js +2 -0
  1196. data/js/node_modules/typed-ts-events/dist/events.min.js.map +1 -0
  1197. data/js/node_modules/typed-ts-events/dist/index.d.ts +3 -0
  1198. data/js/node_modules/typed-ts-events/package.json +64 -0
  1199. data/js/node_modules/typed-ts-events/readme.md +77 -0
  1200. data/js/node_modules/webidl-conversions/LICENSE.md +12 -0
  1201. data/js/node_modules/webidl-conversions/README.md +53 -0
  1202. data/js/node_modules/webidl-conversions/lib/index.js +189 -0
  1203. data/js/node_modules/webidl-conversions/package.json +23 -0
  1204. data/js/node_modules/whatwg-url/LICENSE.txt +21 -0
  1205. data/js/node_modules/whatwg-url/README.md +67 -0
  1206. data/js/node_modules/whatwg-url/lib/URL-impl.js +200 -0
  1207. data/js/node_modules/whatwg-url/lib/URL.js +196 -0
  1208. data/js/node_modules/whatwg-url/lib/public-api.js +11 -0
  1209. data/js/node_modules/whatwg-url/lib/url-state-machine.js +1297 -0
  1210. data/js/node_modules/whatwg-url/lib/utils.js +20 -0
  1211. data/js/node_modules/whatwg-url/package.json +32 -0
  1212. data/js/package-lock.json +706 -0
  1213. data/js/package.json +15 -0
  1214. data/js/worker.js +109 -0
  1215. data/js/yarn.lock +285 -0
  1216. data/lib/waves_lib/map.rb +211 -0
  1217. data/lib/waves_lib/root_wrapper.rb +85 -0
  1218. data/lib/waves_lib/version.rb +6 -0
  1219. data/lib/waves_lib/wrapped_buffer.rb +26 -0
  1220. data/lib/waves_lib/wrapper.rb +82 -0
  1221. data/lib/waves_lib.rb +10 -0
  1222. metadata +1264 -0
@@ -0,0 +1,1494 @@
1
+ declare module 'process' {
2
+ import * as tty from 'node:tty';
3
+ import { Worker } from 'node:worker_threads';
4
+ global {
5
+ var process: NodeJS.Process;
6
+ namespace NodeJS {
7
+ // this namespace merge is here because these are specifically used
8
+ // as the type for process.stdin, process.stdout, and process.stderr.
9
+ // they can't live in tty.d.ts because we need to disambiguate the imported name.
10
+ interface ReadStream extends tty.ReadStream {}
11
+ interface WriteStream extends tty.WriteStream {}
12
+ interface MemoryUsageFn {
13
+ /**
14
+ * The `process.memoryUsage()` method iterate over each page to gather informations about memory
15
+ * usage which can be slow depending on the program memory allocations.
16
+ */
17
+ (): MemoryUsage;
18
+ /**
19
+ * method returns an integer representing the Resident Set Size (RSS) in bytes.
20
+ */
21
+ rss(): number;
22
+ }
23
+ interface MemoryUsage {
24
+ rss: number;
25
+ heapTotal: number;
26
+ heapUsed: number;
27
+ external: number;
28
+ arrayBuffers: number;
29
+ }
30
+ interface CpuUsage {
31
+ user: number;
32
+ system: number;
33
+ }
34
+ interface ProcessRelease {
35
+ name: string;
36
+ sourceUrl?: string | undefined;
37
+ headersUrl?: string | undefined;
38
+ libUrl?: string | undefined;
39
+ lts?: string | undefined;
40
+ }
41
+ interface ProcessVersions extends Dict<string> {
42
+ http_parser: string;
43
+ node: string;
44
+ v8: string;
45
+ ares: string;
46
+ uv: string;
47
+ zlib: string;
48
+ modules: string;
49
+ openssl: string;
50
+ }
51
+ type Platform = 'aix' | 'android' | 'darwin' | 'freebsd' | 'haiku' | 'linux' | 'openbsd' | 'sunos' | 'win32' | 'cygwin' | 'netbsd';
52
+ type Architecture = 'arm' | 'arm64' | 'ia32' | 'mips' | 'mipsel' | 'ppc' | 'ppc64' | 's390' | 's390x' | 'x64';
53
+ type Signals =
54
+ | 'SIGABRT'
55
+ | 'SIGALRM'
56
+ | 'SIGBUS'
57
+ | 'SIGCHLD'
58
+ | 'SIGCONT'
59
+ | 'SIGFPE'
60
+ | 'SIGHUP'
61
+ | 'SIGILL'
62
+ | 'SIGINT'
63
+ | 'SIGIO'
64
+ | 'SIGIOT'
65
+ | 'SIGKILL'
66
+ | 'SIGPIPE'
67
+ | 'SIGPOLL'
68
+ | 'SIGPROF'
69
+ | 'SIGPWR'
70
+ | 'SIGQUIT'
71
+ | 'SIGSEGV'
72
+ | 'SIGSTKFLT'
73
+ | 'SIGSTOP'
74
+ | 'SIGSYS'
75
+ | 'SIGTERM'
76
+ | 'SIGTRAP'
77
+ | 'SIGTSTP'
78
+ | 'SIGTTIN'
79
+ | 'SIGTTOU'
80
+ | 'SIGUNUSED'
81
+ | 'SIGURG'
82
+ | 'SIGUSR1'
83
+ | 'SIGUSR2'
84
+ | 'SIGVTALRM'
85
+ | 'SIGWINCH'
86
+ | 'SIGXCPU'
87
+ | 'SIGXFSZ'
88
+ | 'SIGBREAK'
89
+ | 'SIGLOST'
90
+ | 'SIGINFO';
91
+ type UncaughtExceptionOrigin = 'uncaughtException' | 'unhandledRejection';
92
+ type MultipleResolveType = 'resolve' | 'reject';
93
+ type BeforeExitListener = (code: number) => void;
94
+ type DisconnectListener = () => void;
95
+ type ExitListener = (code: number) => void;
96
+ type RejectionHandledListener = (promise: Promise<unknown>) => void;
97
+ type UncaughtExceptionListener = (error: Error, origin: UncaughtExceptionOrigin) => void;
98
+ /**
99
+ * Most of the time the unhandledRejection will be an Error, but this should not be relied upon
100
+ * as *anything* can be thrown/rejected, it is therefore unsafe to assume that the value is an Error.
101
+ */
102
+ type UnhandledRejectionListener = (reason: unknown, promise: Promise<unknown>) => void;
103
+ type WarningListener = (warning: Error) => void;
104
+ type MessageListener = (message: unknown, sendHandle: unknown) => void;
105
+ type SignalsListener = (signal: Signals) => void;
106
+ type MultipleResolveListener = (type: MultipleResolveType, promise: Promise<unknown>, value: unknown) => void;
107
+ type WorkerListener = (worker: Worker) => void;
108
+ interface Socket extends ReadWriteStream {
109
+ isTTY?: true | undefined;
110
+ }
111
+ // Alias for compatibility
112
+ interface ProcessEnv extends Dict<string> {
113
+ /**
114
+ * Can be used to change the default timezone at runtime
115
+ */
116
+ TZ?: string;
117
+ }
118
+ interface HRTime {
119
+ (time?: [number, number]): [number, number];
120
+ bigint(): bigint;
121
+ }
122
+ interface ProcessReport {
123
+ /**
124
+ * Directory where the report is written.
125
+ * working directory of the Node.js process.
126
+ * @default '' indicating that reports are written to the current
127
+ */
128
+ directory: string;
129
+ /**
130
+ * Filename where the report is written.
131
+ * The default value is the empty string.
132
+ * @default '' the output filename will be comprised of a timestamp,
133
+ * PID, and sequence number.
134
+ */
135
+ filename: string;
136
+ /**
137
+ * Returns a JSON-formatted diagnostic report for the running process.
138
+ * The report's JavaScript stack trace is taken from err, if present.
139
+ */
140
+ getReport(err?: Error): string;
141
+ /**
142
+ * If true, a diagnostic report is generated on fatal errors,
143
+ * such as out of memory errors or failed C++ assertions.
144
+ * @default false
145
+ */
146
+ reportOnFatalError: boolean;
147
+ /**
148
+ * If true, a diagnostic report is generated when the process
149
+ * receives the signal specified by process.report.signal.
150
+ * @default false
151
+ */
152
+ reportOnSignal: boolean;
153
+ /**
154
+ * If true, a diagnostic report is generated on uncaught exception.
155
+ * @default false
156
+ */
157
+ reportOnUncaughtException: boolean;
158
+ /**
159
+ * The signal used to trigger the creation of a diagnostic report.
160
+ * @default 'SIGUSR2'
161
+ */
162
+ signal: Signals;
163
+ /**
164
+ * Writes a diagnostic report to a file. If filename is not provided, the default filename
165
+ * includes the date, time, PID, and a sequence number.
166
+ * The report's JavaScript stack trace is taken from err, if present.
167
+ *
168
+ * @param fileName Name of the file where the report is written.
169
+ * This should be a relative path, that will be appended to the directory specified in
170
+ * `process.report.directory`, or the current working directory of the Node.js process,
171
+ * if unspecified.
172
+ * @param error A custom error used for reporting the JavaScript stack.
173
+ * @return Filename of the generated report.
174
+ */
175
+ writeReport(fileName?: string): string;
176
+ writeReport(error?: Error): string;
177
+ writeReport(fileName?: string, err?: Error): string;
178
+ }
179
+ interface ResourceUsage {
180
+ fsRead: number;
181
+ fsWrite: number;
182
+ involuntaryContextSwitches: number;
183
+ ipcReceived: number;
184
+ ipcSent: number;
185
+ majorPageFault: number;
186
+ maxRSS: number;
187
+ minorPageFault: number;
188
+ sharedMemorySize: number;
189
+ signalsCount: number;
190
+ swappedOut: number;
191
+ systemCPUTime: number;
192
+ unsharedDataSize: number;
193
+ unsharedStackSize: number;
194
+ userCPUTime: number;
195
+ voluntaryContextSwitches: number;
196
+ }
197
+ interface EmitWarningOptions {
198
+ /**
199
+ * When `warning` is a `string`, `type` is the name to use for the _type_ of warning being emitted.
200
+ *
201
+ * @default 'Warning'
202
+ */
203
+ type?: string | undefined;
204
+ /**
205
+ * A unique identifier for the warning instance being emitted.
206
+ */
207
+ code?: string | undefined;
208
+ /**
209
+ * When `warning` is a `string`, `ctor` is an optional function used to limit the generated stack trace.
210
+ *
211
+ * @default process.emitWarning
212
+ */
213
+ ctor?: Function | undefined;
214
+ /**
215
+ * Additional text to include with the error.
216
+ */
217
+ detail?: string | undefined;
218
+ }
219
+ interface ProcessConfig {
220
+ readonly target_defaults: {
221
+ readonly cflags: any[];
222
+ readonly default_configuration: string;
223
+ readonly defines: string[];
224
+ readonly include_dirs: string[];
225
+ readonly libraries: string[];
226
+ };
227
+ readonly variables: {
228
+ readonly clang: number;
229
+ readonly host_arch: string;
230
+ readonly node_install_npm: boolean;
231
+ readonly node_install_waf: boolean;
232
+ readonly node_prefix: string;
233
+ readonly node_shared_openssl: boolean;
234
+ readonly node_shared_v8: boolean;
235
+ readonly node_shared_zlib: boolean;
236
+ readonly node_use_dtrace: boolean;
237
+ readonly node_use_etw: boolean;
238
+ readonly node_use_openssl: boolean;
239
+ readonly target_arch: string;
240
+ readonly v8_no_strict_aliasing: number;
241
+ readonly v8_use_snapshot: boolean;
242
+ readonly visibility: string;
243
+ };
244
+ }
245
+ interface Process extends EventEmitter {
246
+ /**
247
+ * The `process.stdout` property returns a stream connected to`stdout` (fd `1`). It is a `net.Socket` (which is a `Duplex` stream) unless fd `1` refers to a file, in which case it is
248
+ * a `Writable` stream.
249
+ *
250
+ * For example, to copy `process.stdin` to `process.stdout`:
251
+ *
252
+ * ```js
253
+ * import { stdin, stdout } from 'node:process';
254
+ *
255
+ * stdin.pipe(stdout);
256
+ * ```
257
+ *
258
+ * `process.stdout` differs from other Node.js streams in important ways. See `note on process I/O` for more information.
259
+ */
260
+ stdout: WriteStream & {
261
+ fd: 1;
262
+ };
263
+ /**
264
+ * The `process.stderr` property returns a stream connected to`stderr` (fd `2`). It is a `net.Socket` (which is a `Duplex` stream) unless fd `2` refers to a file, in which case it is
265
+ * a `Writable` stream.
266
+ *
267
+ * `process.stderr` differs from other Node.js streams in important ways. See `note on process I/O` for more information.
268
+ */
269
+ stderr: WriteStream & {
270
+ fd: 2;
271
+ };
272
+ /**
273
+ * The `process.stdin` property returns a stream connected to`stdin` (fd `0`). It is a `net.Socket` (which is a `Duplex` stream) unless fd `0` refers to a file, in which case it is
274
+ * a `Readable` stream.
275
+ *
276
+ * For details of how to read from `stdin` see `readable.read()`.
277
+ *
278
+ * As a `Duplex` stream, `process.stdin` can also be used in "old" mode that
279
+ * is compatible with scripts written for Node.js prior to v0.10\.
280
+ * For more information see `Stream compatibility`.
281
+ *
282
+ * In "old" streams mode the `stdin` stream is paused by default, so one
283
+ * must call `process.stdin.resume()` to read from it. Note also that calling`process.stdin.resume()` itself would switch stream to "old" mode.
284
+ */
285
+ stdin: ReadStream & {
286
+ fd: 0;
287
+ };
288
+ openStdin(): Socket;
289
+ /**
290
+ * The `process.argv` property returns an array containing the command-line
291
+ * arguments passed when the Node.js process was launched. The first element will
292
+ * be {@link execPath}. See `process.argv0` if access to the original value
293
+ * of `argv[0]` is needed. The second element will be the path to the JavaScript
294
+ * file being executed. The remaining elements will be any additional command-line
295
+ * arguments.
296
+ *
297
+ * For example, assuming the following script for `process-args.js`:
298
+ *
299
+ * ```js
300
+ * import { argv } from 'node:process';
301
+ *
302
+ * // print process.argv
303
+ * argv.forEach((val, index) => {
304
+ * console.log(`${index}: ${val}`);
305
+ * });
306
+ * ```
307
+ *
308
+ * Launching the Node.js process as:
309
+ *
310
+ * ```bash
311
+ * node process-args.js one two=three four
312
+ * ```
313
+ *
314
+ * Would generate the output:
315
+ *
316
+ * ```text
317
+ * 0: /usr/local/bin/node
318
+ * 1: /Users/mjr/work/node/process-args.js
319
+ * 2: one
320
+ * 3: two=three
321
+ * 4: four
322
+ * ```
323
+ * @since v0.1.27
324
+ */
325
+ argv: string[];
326
+ /**
327
+ * The `process.argv0` property stores a read-only copy of the original value of`argv[0]` passed when Node.js starts.
328
+ *
329
+ * ```console
330
+ * $ bash -c 'exec -a customArgv0 ./node'
331
+ * > process.argv[0]
332
+ * '/Volumes/code/external/node/out/Release/node'
333
+ * > process.argv0
334
+ * 'customArgv0'
335
+ * ```
336
+ * @since v6.4.0
337
+ */
338
+ argv0: string;
339
+ /**
340
+ * The `process.execArgv` property returns the set of Node.js-specific command-line
341
+ * options passed when the Node.js process was launched. These options do not
342
+ * appear in the array returned by the {@link argv} property, and do not
343
+ * include the Node.js executable, the name of the script, or any options following
344
+ * the script name. These options are useful in order to spawn child processes with
345
+ * the same execution environment as the parent.
346
+ *
347
+ * ```bash
348
+ * node --harmony script.js --version
349
+ * ```
350
+ *
351
+ * Results in `process.execArgv`:
352
+ *
353
+ * ```js
354
+ * ['--harmony']
355
+ * ```
356
+ *
357
+ * And `process.argv`:
358
+ *
359
+ * ```js
360
+ * ['/usr/local/bin/node', 'script.js', '--version']
361
+ * ```
362
+ *
363
+ * Refer to `Worker constructor` for the detailed behavior of worker
364
+ * threads with this property.
365
+ * @since v0.7.7
366
+ */
367
+ execArgv: string[];
368
+ /**
369
+ * The `process.execPath` property returns the absolute pathname of the executable
370
+ * that started the Node.js process. Symbolic links, if any, are resolved.
371
+ *
372
+ * ```js
373
+ * '/usr/local/bin/node'
374
+ * ```
375
+ * @since v0.1.100
376
+ */
377
+ execPath: string;
378
+ /**
379
+ * The `process.abort()` method causes the Node.js process to exit immediately and
380
+ * generate a core file.
381
+ *
382
+ * This feature is not available in `Worker` threads.
383
+ * @since v0.7.0
384
+ */
385
+ abort(): never;
386
+ /**
387
+ * The `process.chdir()` method changes the current working directory of the
388
+ * Node.js process or throws an exception if doing so fails (for instance, if
389
+ * the specified `directory` does not exist).
390
+ *
391
+ * ```js
392
+ * import { chdir, cwd } from 'node:process';
393
+ *
394
+ * console.log(`Starting directory: ${cwd()}`);
395
+ * try {
396
+ * chdir('/tmp');
397
+ * console.log(`New directory: ${cwd()}`);
398
+ * } catch (err) {
399
+ * console.error(`chdir: ${err}`);
400
+ * }
401
+ * ```
402
+ *
403
+ * This feature is not available in `Worker` threads.
404
+ * @since v0.1.17
405
+ */
406
+ chdir(directory: string): void;
407
+ /**
408
+ * The `process.cwd()` method returns the current working directory of the Node.js
409
+ * process.
410
+ *
411
+ * ```js
412
+ * import { cwd } from 'node:process';
413
+ *
414
+ * console.log(`Current directory: ${cwd()}`);
415
+ * ```
416
+ * @since v0.1.8
417
+ */
418
+ cwd(): string;
419
+ /**
420
+ * The port used by the Node.js debugger when enabled.
421
+ *
422
+ * ```js
423
+ * import process from 'node:process';
424
+ *
425
+ * process.debugPort = 5858;
426
+ * ```
427
+ * @since v0.7.2
428
+ */
429
+ debugPort: number;
430
+ /**
431
+ * The `process.emitWarning()` method can be used to emit custom or application
432
+ * specific process warnings. These can be listened for by adding a handler to the `'warning'` event.
433
+ *
434
+ * ```js
435
+ * import { emitWarning } from 'node:process';
436
+ *
437
+ * // Emit a warning with a code and additional detail.
438
+ * emitWarning('Something happened!', {
439
+ * code: 'MY_WARNING',
440
+ * detail: 'This is some additional information',
441
+ * });
442
+ * // Emits:
443
+ * // (node:56338) [MY_WARNING] Warning: Something happened!
444
+ * // This is some additional information
445
+ * ```
446
+ *
447
+ * In this example, an `Error` object is generated internally by`process.emitWarning()` and passed through to the `'warning'` handler.
448
+ *
449
+ * ```js
450
+ * import process from 'node:process';
451
+ *
452
+ * process.on('warning', (warning) => {
453
+ * console.warn(warning.name); // 'Warning'
454
+ * console.warn(warning.message); // 'Something happened!'
455
+ * console.warn(warning.code); // 'MY_WARNING'
456
+ * console.warn(warning.stack); // Stack trace
457
+ * console.warn(warning.detail); // 'This is some additional information'
458
+ * });
459
+ * ```
460
+ *
461
+ * If `warning` is passed as an `Error` object, the `options` argument is ignored.
462
+ * @since v8.0.0
463
+ * @param warning The warning to emit.
464
+ */
465
+ emitWarning(warning: string | Error, ctor?: Function): void;
466
+ emitWarning(warning: string | Error, type?: string, ctor?: Function): void;
467
+ emitWarning(warning: string | Error, type?: string, code?: string, ctor?: Function): void;
468
+ emitWarning(warning: string | Error, options?: EmitWarningOptions): void;
469
+ /**
470
+ * The `process.env` property returns an object containing the user environment.
471
+ * See [`environ(7)`](http://man7.org/linux/man-pages/man7/environ.7.html).
472
+ *
473
+ * An example of this object looks like:
474
+ *
475
+ * ```js
476
+ * {
477
+ * TERM: 'xterm-256color',
478
+ * SHELL: '/usr/local/bin/bash',
479
+ * USER: 'maciej',
480
+ * PATH: '~/.bin/:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin',
481
+ * PWD: '/Users/maciej',
482
+ * EDITOR: 'vim',
483
+ * SHLVL: '1',
484
+ * HOME: '/Users/maciej',
485
+ * LOGNAME: 'maciej',
486
+ * _: '/usr/local/bin/node'
487
+ * }
488
+ * ```
489
+ *
490
+ * It is possible to modify this object, but such modifications will not be
491
+ * reflected outside the Node.js process, or (unless explicitly requested)
492
+ * to other `Worker` threads.
493
+ * In other words, the following example would not work:
494
+ *
495
+ * ```bash
496
+ * node -e 'process.env.foo = "bar"' &#x26;&#x26; echo $foo
497
+ * ```
498
+ *
499
+ * While the following will:
500
+ *
501
+ * ```js
502
+ * import { env } from 'node:process';
503
+ *
504
+ * env.foo = 'bar';
505
+ * console.log(env.foo);
506
+ * ```
507
+ *
508
+ * Assigning a property on `process.env` will implicitly convert the value
509
+ * to a string. **This behavior is deprecated.** Future versions of Node.js may
510
+ * throw an error when the value is not a string, number, or boolean.
511
+ *
512
+ * ```js
513
+ * import { env } from 'node:process';
514
+ *
515
+ * env.test = null;
516
+ * console.log(env.test);
517
+ * // => 'null'
518
+ * env.test = undefined;
519
+ * console.log(env.test);
520
+ * // => 'undefined'
521
+ * ```
522
+ *
523
+ * Use `delete` to delete a property from `process.env`.
524
+ *
525
+ * ```js
526
+ * import { env } from 'node:process';
527
+ *
528
+ * env.TEST = 1;
529
+ * delete env.TEST;
530
+ * console.log(env.TEST);
531
+ * // => undefined
532
+ * ```
533
+ *
534
+ * On Windows operating systems, environment variables are case-insensitive.
535
+ *
536
+ * ```js
537
+ * import { env } from 'node:process';
538
+ *
539
+ * env.TEST = 1;
540
+ * console.log(env.test);
541
+ * // => 1
542
+ * ```
543
+ *
544
+ * Unless explicitly specified when creating a `Worker` instance,
545
+ * each `Worker` thread has its own copy of `process.env`, based on its
546
+ * parent thread's `process.env`, or whatever was specified as the `env` option
547
+ * to the `Worker` constructor. Changes to `process.env` will not be visible
548
+ * across `Worker` threads, and only the main thread can make changes that
549
+ * are visible to the operating system or to native add-ons.
550
+ * @since v0.1.27
551
+ */
552
+ env: ProcessEnv;
553
+ /**
554
+ * The `process.exit()` method instructs Node.js to terminate the process
555
+ * synchronously with an exit status of `code`. If `code` is omitted, exit uses
556
+ * either the 'success' code `0` or the value of `process.exitCode` if it has been
557
+ * set. Node.js will not terminate until all the `'exit'` event listeners are
558
+ * called.
559
+ *
560
+ * To exit with a 'failure' code:
561
+ *
562
+ * ```js
563
+ * import { exit } from 'node:process';
564
+ *
565
+ * exit(1);
566
+ * ```
567
+ *
568
+ * The shell that executed Node.js should see the exit code as `1`.
569
+ *
570
+ * Calling `process.exit()` will force the process to exit as quickly as possible
571
+ * even if there are still asynchronous operations pending that have not yet
572
+ * completed fully, including I/O operations to `process.stdout` and`process.stderr`.
573
+ *
574
+ * In most situations, it is not actually necessary to call `process.exit()`explicitly. The Node.js process will exit on its own _if there is no additional_
575
+ * _work pending_ in the event loop. The `process.exitCode` property can be set to
576
+ * tell the process which exit code to use when the process exits gracefully.
577
+ *
578
+ * For instance, the following example illustrates a _misuse_ of the`process.exit()` method that could lead to data printed to stdout being
579
+ * truncated and lost:
580
+ *
581
+ * ```js
582
+ * import { exit } from 'node:process';
583
+ *
584
+ * // This is an example of what *not* to do:
585
+ * if (someConditionNotMet()) {
586
+ * printUsageToStdout();
587
+ * exit(1);
588
+ * }
589
+ * ```
590
+ *
591
+ * The reason this is problematic is because writes to `process.stdout` in Node.js
592
+ * are sometimes _asynchronous_ and may occur over multiple ticks of the Node.js
593
+ * event loop. Calling `process.exit()`, however, forces the process to exit _before_ those additional writes to `stdout` can be performed.
594
+ *
595
+ * Rather than calling `process.exit()` directly, the code _should_ set the`process.exitCode` and allow the process to exit naturally by avoiding
596
+ * scheduling any additional work for the event loop:
597
+ *
598
+ * ```js
599
+ * import process from 'node:process';
600
+ *
601
+ * // How to properly set the exit code while letting
602
+ * // the process exit gracefully.
603
+ * if (someConditionNotMet()) {
604
+ * printUsageToStdout();
605
+ * process.exitCode = 1;
606
+ * }
607
+ * ```
608
+ *
609
+ * If it is necessary to terminate the Node.js process due to an error condition,
610
+ * throwing an _uncaught_ error and allowing the process to terminate accordingly
611
+ * is safer than calling `process.exit()`.
612
+ *
613
+ * In `Worker` threads, this function stops the current thread rather
614
+ * than the current process.
615
+ * @since v0.1.13
616
+ * @param [code=0] The exit code. For string type, only integer strings (e.g.,'1') are allowed.
617
+ */
618
+ exit(code?: number): never;
619
+ /**
620
+ * A number which will be the process exit code, when the process either
621
+ * exits gracefully, or is exited via {@link exit} without specifying
622
+ * a code.
623
+ *
624
+ * Specifying a code to {@link exit} will override any
625
+ * previous setting of `process.exitCode`.
626
+ * @since v0.11.8
627
+ */
628
+ exitCode?: number | undefined;
629
+ /**
630
+ * The `process.getgid()` method returns the numerical group identity of the
631
+ * process. (See [`getgid(2)`](http://man7.org/linux/man-pages/man2/getgid.2.html).)
632
+ *
633
+ * ```js
634
+ * import process from 'process';
635
+ *
636
+ * if (process.getgid) {
637
+ * console.log(`Current gid: ${process.getgid()}`);
638
+ * }
639
+ * ```
640
+ *
641
+ * This function is only available on POSIX platforms (i.e. not Windows or
642
+ * Android).
643
+ * @since v0.1.31
644
+ */
645
+ getgid?: () => number;
646
+ /**
647
+ * The `process.setgid()` method sets the group identity of the process. (See [`setgid(2)`](http://man7.org/linux/man-pages/man2/setgid.2.html).) The `id` can be passed as either a
648
+ * numeric ID or a group name
649
+ * string. If a group name is specified, this method blocks while resolving the
650
+ * associated numeric ID.
651
+ *
652
+ * ```js
653
+ * import process from 'process';
654
+ *
655
+ * if (process.getgid &#x26;&#x26; process.setgid) {
656
+ * console.log(`Current gid: ${process.getgid()}`);
657
+ * try {
658
+ * process.setgid(501);
659
+ * console.log(`New gid: ${process.getgid()}`);
660
+ * } catch (err) {
661
+ * console.log(`Failed to set gid: ${err}`);
662
+ * }
663
+ * }
664
+ * ```
665
+ *
666
+ * This function is only available on POSIX platforms (i.e. not Windows or
667
+ * Android).
668
+ * This feature is not available in `Worker` threads.
669
+ * @since v0.1.31
670
+ * @param id The group name or ID
671
+ */
672
+ setgid?: (id: number | string) => void;
673
+ /**
674
+ * The `process.getuid()` method returns the numeric user identity of the process.
675
+ * (See [`getuid(2)`](http://man7.org/linux/man-pages/man2/getuid.2.html).)
676
+ *
677
+ * ```js
678
+ * import process from 'process';
679
+ *
680
+ * if (process.getuid) {
681
+ * console.log(`Current uid: ${process.getuid()}`);
682
+ * }
683
+ * ```
684
+ *
685
+ * This function is only available on POSIX platforms (i.e. not Windows or
686
+ * Android).
687
+ * @since v0.1.28
688
+ */
689
+ getuid?: () => number;
690
+ /**
691
+ * The `process.setuid(id)` method sets the user identity of the process. (See [`setuid(2)`](http://man7.org/linux/man-pages/man2/setuid.2.html).) The `id` can be passed as either a
692
+ * numeric ID or a username string.
693
+ * If a username is specified, the method blocks while resolving the associated
694
+ * numeric ID.
695
+ *
696
+ * ```js
697
+ * import process from 'process';
698
+ *
699
+ * if (process.getuid &#x26;&#x26; process.setuid) {
700
+ * console.log(`Current uid: ${process.getuid()}`);
701
+ * try {
702
+ * process.setuid(501);
703
+ * console.log(`New uid: ${process.getuid()}`);
704
+ * } catch (err) {
705
+ * console.log(`Failed to set uid: ${err}`);
706
+ * }
707
+ * }
708
+ * ```
709
+ *
710
+ * This function is only available on POSIX platforms (i.e. not Windows or
711
+ * Android).
712
+ * This feature is not available in `Worker` threads.
713
+ * @since v0.1.28
714
+ */
715
+ setuid?: (id: number | string) => void;
716
+ /**
717
+ * The `process.geteuid()` method returns the numerical effective user identity of
718
+ * the process. (See [`geteuid(2)`](http://man7.org/linux/man-pages/man2/geteuid.2.html).)
719
+ *
720
+ * ```js
721
+ * import process from 'process';
722
+ *
723
+ * if (process.geteuid) {
724
+ * console.log(`Current uid: ${process.geteuid()}`);
725
+ * }
726
+ * ```
727
+ *
728
+ * This function is only available on POSIX platforms (i.e. not Windows or
729
+ * Android).
730
+ * @since v2.0.0
731
+ */
732
+ geteuid?: () => number;
733
+ /**
734
+ * The `process.seteuid()` method sets the effective user identity of the process.
735
+ * (See [`seteuid(2)`](http://man7.org/linux/man-pages/man2/seteuid.2.html).) The `id` can be passed as either a numeric ID or a username
736
+ * string. If a username is specified, the method blocks while resolving the
737
+ * associated numeric ID.
738
+ *
739
+ * ```js
740
+ * import process from 'process';
741
+ *
742
+ * if (process.geteuid &#x26;&#x26; process.seteuid) {
743
+ * console.log(`Current uid: ${process.geteuid()}`);
744
+ * try {
745
+ * process.seteuid(501);
746
+ * console.log(`New uid: ${process.geteuid()}`);
747
+ * } catch (err) {
748
+ * console.log(`Failed to set uid: ${err}`);
749
+ * }
750
+ * }
751
+ * ```
752
+ *
753
+ * This function is only available on POSIX platforms (i.e. not Windows or
754
+ * Android).
755
+ * This feature is not available in `Worker` threads.
756
+ * @since v2.0.0
757
+ * @param id A user name or ID
758
+ */
759
+ seteuid?: (id: number | string) => void;
760
+ /**
761
+ * The `process.getegid()` method returns the numerical effective group identity
762
+ * of the Node.js process. (See [`getegid(2)`](http://man7.org/linux/man-pages/man2/getegid.2.html).)
763
+ *
764
+ * ```js
765
+ * import process from 'process';
766
+ *
767
+ * if (process.getegid) {
768
+ * console.log(`Current gid: ${process.getegid()}`);
769
+ * }
770
+ * ```
771
+ *
772
+ * This function is only available on POSIX platforms (i.e. not Windows or
773
+ * Android).
774
+ * @since v2.0.0
775
+ */
776
+ getegid?: () => number;
777
+ /**
778
+ * The `process.setegid()` method sets the effective group identity of the process.
779
+ * (See [`setegid(2)`](http://man7.org/linux/man-pages/man2/setegid.2.html).) The `id` can be passed as either a numeric ID or a group
780
+ * name string. If a group name is specified, this method blocks while resolving
781
+ * the associated a numeric ID.
782
+ *
783
+ * ```js
784
+ * import process from 'process';
785
+ *
786
+ * if (process.getegid &#x26;&#x26; process.setegid) {
787
+ * console.log(`Current gid: ${process.getegid()}`);
788
+ * try {
789
+ * process.setegid(501);
790
+ * console.log(`New gid: ${process.getegid()}`);
791
+ * } catch (err) {
792
+ * console.log(`Failed to set gid: ${err}`);
793
+ * }
794
+ * }
795
+ * ```
796
+ *
797
+ * This function is only available on POSIX platforms (i.e. not Windows or
798
+ * Android).
799
+ * This feature is not available in `Worker` threads.
800
+ * @since v2.0.0
801
+ * @param id A group name or ID
802
+ */
803
+ setegid?: (id: number | string) => void;
804
+ /**
805
+ * The `process.getgroups()` method returns an array with the supplementary group
806
+ * IDs. POSIX leaves it unspecified if the effective group ID is included but
807
+ * Node.js ensures it always is.
808
+ *
809
+ * ```js
810
+ * import process from 'process';
811
+ *
812
+ * if (process.getgroups) {
813
+ * console.log(process.getgroups()); // [ 16, 21, 297 ]
814
+ * }
815
+ * ```
816
+ *
817
+ * This function is only available on POSIX platforms (i.e. not Windows or
818
+ * Android).
819
+ * @since v0.9.4
820
+ */
821
+ getgroups?: () => number[];
822
+ /**
823
+ * The `process.setgroups()` method sets the supplementary group IDs for the
824
+ * Node.js process. This is a privileged operation that requires the Node.js
825
+ * process to have `root` or the `CAP_SETGID` capability.
826
+ *
827
+ * The `groups` array can contain numeric group IDs, group names, or both.
828
+ *
829
+ * ```js
830
+ * import process from 'process';
831
+ *
832
+ * if (process.getgroups &#x26;&#x26; process.setgroups) {
833
+ * try {
834
+ * process.setgroups([501]);
835
+ * console.log(process.getgroups()); // new groups
836
+ * } catch (err) {
837
+ * console.log(`Failed to set groups: ${err}`);
838
+ * }
839
+ * }
840
+ * ```
841
+ *
842
+ * This function is only available on POSIX platforms (i.e. not Windows or
843
+ * Android).
844
+ * This feature is not available in `Worker` threads.
845
+ * @since v0.9.4
846
+ */
847
+ setgroups?: (groups: ReadonlyArray<string | number>) => void;
848
+ /**
849
+ * The `process.setUncaughtExceptionCaptureCallback()` function sets a function
850
+ * that will be invoked when an uncaught exception occurs, which will receive the
851
+ * exception value itself as its first argument.
852
+ *
853
+ * If such a function is set, the `'uncaughtException'` event will
854
+ * not be emitted. If `--abort-on-uncaught-exception` was passed from the
855
+ * command line or set through `v8.setFlagsFromString()`, the process will
856
+ * not abort. Actions configured to take place on exceptions such as report
857
+ * generations will be affected too
858
+ *
859
+ * To unset the capture function,`process.setUncaughtExceptionCaptureCallback(null)` may be used. Calling this
860
+ * method with a non-`null` argument while another capture function is set will
861
+ * throw an error.
862
+ *
863
+ * Using this function is mutually exclusive with using the deprecated `domain` built-in module.
864
+ * @since v9.3.0
865
+ */
866
+ setUncaughtExceptionCaptureCallback(cb: ((err: Error) => void) | null): void;
867
+ /**
868
+ * Indicates whether a callback has been set using {@link setUncaughtExceptionCaptureCallback}.
869
+ * @since v9.3.0
870
+ */
871
+ hasUncaughtExceptionCaptureCallback(): boolean;
872
+ /**
873
+ * The `process.version` property contains the Node.js version string.
874
+ *
875
+ * ```js
876
+ * import { version } from 'node:process';
877
+ *
878
+ * console.log(`Version: ${version}`);
879
+ * // Version: v14.8.0
880
+ * ```
881
+ *
882
+ * To get the version string without the prepended _v_, use`process.versions.node`.
883
+ * @since v0.1.3
884
+ */
885
+ readonly version: string;
886
+ /**
887
+ * The `process.versions` property returns an object listing the version strings of
888
+ * Node.js and its dependencies. `process.versions.modules` indicates the current
889
+ * ABI version, which is increased whenever a C++ API changes. Node.js will refuse
890
+ * to load modules that were compiled against a different module ABI version.
891
+ *
892
+ * ```js
893
+ * import { versions } from 'node:process';
894
+ *
895
+ * console.log(versions);
896
+ * ```
897
+ *
898
+ * Will generate an object similar to:
899
+ *
900
+ * ```console
901
+ * { node: '20.2.0',
902
+ * acorn: '8.8.2',
903
+ * ada: '2.4.0',
904
+ * ares: '1.19.0',
905
+ * base64: '0.5.0',
906
+ * brotli: '1.0.9',
907
+ * cjs_module_lexer: '1.2.2',
908
+ * cldr: '43.0',
909
+ * icu: '73.1',
910
+ * llhttp: '8.1.0',
911
+ * modules: '115',
912
+ * napi: '8',
913
+ * nghttp2: '1.52.0',
914
+ * nghttp3: '0.7.0',
915
+ * ngtcp2: '0.8.1',
916
+ * openssl: '3.0.8+quic',
917
+ * simdutf: '3.2.9',
918
+ * tz: '2023c',
919
+ * undici: '5.22.0',
920
+ * unicode: '15.0',
921
+ * uv: '1.44.2',
922
+ * uvwasi: '0.0.16',
923
+ * v8: '11.3.244.8-node.9',
924
+ * zlib: '1.2.13' }
925
+ * ```
926
+ * @since v0.2.0
927
+ */
928
+ readonly versions: ProcessVersions;
929
+ /**
930
+ * The `process.config` property returns a frozen `Object` containing the
931
+ * JavaScript representation of the configure options used to compile the current
932
+ * Node.js executable. This is the same as the `config.gypi` file that was produced
933
+ * when running the `./configure` script.
934
+ *
935
+ * An example of the possible output looks like:
936
+ *
937
+ * ```js
938
+ * {
939
+ * target_defaults:
940
+ * { cflags: [],
941
+ * default_configuration: 'Release',
942
+ * defines: [],
943
+ * include_dirs: [],
944
+ * libraries: [] },
945
+ * variables:
946
+ * {
947
+ * host_arch: 'x64',
948
+ * napi_build_version: 5,
949
+ * node_install_npm: 'true',
950
+ * node_prefix: '',
951
+ * node_shared_cares: 'false',
952
+ * node_shared_http_parser: 'false',
953
+ * node_shared_libuv: 'false',
954
+ * node_shared_zlib: 'false',
955
+ * node_use_openssl: 'true',
956
+ * node_shared_openssl: 'false',
957
+ * strict_aliasing: 'true',
958
+ * target_arch: 'x64',
959
+ * v8_use_snapshot: 1
960
+ * }
961
+ * }
962
+ * ```
963
+ * @since v0.7.7
964
+ */
965
+ readonly config: ProcessConfig;
966
+ /**
967
+ * The `process.kill()` method sends the `signal` to the process identified by`pid`.
968
+ *
969
+ * Signal names are strings such as `'SIGINT'` or `'SIGHUP'`. See `Signal Events` and [`kill(2)`](http://man7.org/linux/man-pages/man2/kill.2.html) for more information.
970
+ *
971
+ * This method will throw an error if the target `pid` does not exist. As a special
972
+ * case, a signal of `0` can be used to test for the existence of a process.
973
+ * Windows platforms will throw an error if the `pid` is used to kill a process
974
+ * group.
975
+ *
976
+ * Even though the name of this function is `process.kill()`, it is really just a
977
+ * signal sender, like the `kill` system call. The signal sent may do something
978
+ * other than kill the target process.
979
+ *
980
+ * ```js
981
+ * import process, { kill } from 'node:process';
982
+ *
983
+ * process.on('SIGHUP', () => {
984
+ * console.log('Got SIGHUP signal.');
985
+ * });
986
+ *
987
+ * setTimeout(() => {
988
+ * console.log('Exiting.');
989
+ * process.exit(0);
990
+ * }, 100);
991
+ *
992
+ * kill(process.pid, 'SIGHUP');
993
+ * ```
994
+ *
995
+ * When `SIGUSR1` is received by a Node.js process, Node.js will start the
996
+ * debugger. See `Signal Events`.
997
+ * @since v0.0.6
998
+ * @param pid A process ID
999
+ * @param [signal='SIGTERM'] The signal to send, either as a string or number.
1000
+ */
1001
+ kill(pid: number, signal?: string | number): true;
1002
+ /**
1003
+ * The `process.pid` property returns the PID of the process.
1004
+ *
1005
+ * ```js
1006
+ * import { pid } from 'node:process';
1007
+ *
1008
+ * console.log(`This process is pid ${pid}`);
1009
+ * ```
1010
+ * @since v0.1.15
1011
+ */
1012
+ readonly pid: number;
1013
+ /**
1014
+ * The `process.ppid` property returns the PID of the parent of the
1015
+ * current process.
1016
+ *
1017
+ * ```js
1018
+ * import { ppid } from 'node:process';
1019
+ *
1020
+ * console.log(`The parent process is pid ${ppid}`);
1021
+ * ```
1022
+ * @since v9.2.0, v8.10.0, v6.13.0
1023
+ */
1024
+ readonly ppid: number;
1025
+ /**
1026
+ * The `process.title` property returns the current process title (i.e. returns
1027
+ * the current value of `ps`). Assigning a new value to `process.title` modifies
1028
+ * the current value of `ps`.
1029
+ *
1030
+ * When a new value is assigned, different platforms will impose different maximum
1031
+ * length restrictions on the title. Usually such restrictions are quite limited.
1032
+ * For instance, on Linux and macOS, `process.title` is limited to the size of the
1033
+ * binary name plus the length of the command-line arguments because setting the`process.title` overwrites the `argv` memory of the process. Node.js v0.8
1034
+ * allowed for longer process title strings by also overwriting the `environ`memory but that was potentially insecure and confusing in some (rather obscure)
1035
+ * cases.
1036
+ *
1037
+ * Assigning a value to `process.title` might not result in an accurate label
1038
+ * within process manager applications such as macOS Activity Monitor or Windows
1039
+ * Services Manager.
1040
+ * @since v0.1.104
1041
+ */
1042
+ title: string;
1043
+ /**
1044
+ * The operating system CPU architecture for which the Node.js binary was compiled.
1045
+ * Possible values are: `'arm'`, `'arm64'`, `'ia32'`, `'mips'`,`'mipsel'`, `'ppc'`,`'ppc64'`, `'s390'`, `'s390x'`, and `'x64'`.
1046
+ *
1047
+ * ```js
1048
+ * import { arch } from 'node:process';
1049
+ *
1050
+ * console.log(`This processor architecture is ${arch}`);
1051
+ * ```
1052
+ * @since v0.5.0
1053
+ */
1054
+ readonly arch: Architecture;
1055
+ /**
1056
+ * The `process.platform` property returns a string identifying the operating
1057
+ * system platform for which the Node.js binary was compiled.
1058
+ *
1059
+ * Currently possible values are:
1060
+ *
1061
+ * * `'aix'`
1062
+ * * `'darwin'`
1063
+ * * `'freebsd'`
1064
+ * * `'linux'`
1065
+ * * `'openbsd'`
1066
+ * * `'sunos'`
1067
+ * * `'win32'`
1068
+ *
1069
+ * ```js
1070
+ * import { platform } from 'node:process';
1071
+ *
1072
+ * console.log(`This platform is ${platform}`);
1073
+ * ```
1074
+ *
1075
+ * The value `'android'` may also be returned if the Node.js is built on the
1076
+ * Android operating system. However, Android support in Node.js [is experimental](https://github.com/nodejs/node/blob/HEAD/BUILDING.md#androidandroid-based-devices-eg-firefox-os).
1077
+ * @since v0.1.16
1078
+ */
1079
+ readonly platform: Platform;
1080
+ /**
1081
+ * The `process.mainModule` property provides an alternative way of retrieving `require.main`. The difference is that if the main module changes at
1082
+ * runtime, `require.main` may still refer to the original main module in
1083
+ * modules that were required before the change occurred. Generally, it's
1084
+ * safe to assume that the two refer to the same module.
1085
+ *
1086
+ * As with `require.main`, `process.mainModule` will be `undefined` if there
1087
+ * is no entry script.
1088
+ * @since v0.1.17
1089
+ * @deprecated Since v14.0.0 - Use `main` instead.
1090
+ */
1091
+ mainModule?: Module | undefined;
1092
+ memoryUsage: MemoryUsageFn;
1093
+ /**
1094
+ * Gets the amount of memory available to the process (in bytes) based on
1095
+ * limits imposed by the OS. If there is no such constraint, or the constraint
1096
+ * is unknown, `undefined` is returned.
1097
+ *
1098
+ * See [`uv_get_constrained_memory`](https://docs.libuv.org/en/v1.x/misc.html#c.uv_get_constrained_memory) for more
1099
+ * information.
1100
+ * @since v19.6.0, v18.15.0
1101
+ * @experimental
1102
+ */
1103
+ constrainedMemory(): number | undefined;
1104
+ /**
1105
+ * The `process.cpuUsage()` method returns the user and system CPU time usage of
1106
+ * the current process, in an object with properties `user` and `system`, whose
1107
+ * values are microsecond values (millionth of a second). These values measure time
1108
+ * spent in user and system code respectively, and may end up being greater than
1109
+ * actual elapsed time if multiple CPU cores are performing work for this process.
1110
+ *
1111
+ * The result of a previous call to `process.cpuUsage()` can be passed as the
1112
+ * argument to the function, to get a diff reading.
1113
+ *
1114
+ * ```js
1115
+ * import { cpuUsage } from 'node:process';
1116
+ *
1117
+ * const startUsage = cpuUsage();
1118
+ * // { user: 38579, system: 6986 }
1119
+ *
1120
+ * // spin the CPU for 500 milliseconds
1121
+ * const now = Date.now();
1122
+ * while (Date.now() - now < 500);
1123
+ *
1124
+ * console.log(cpuUsage(startUsage));
1125
+ * // { user: 514883, system: 11226 }
1126
+ * ```
1127
+ * @since v6.1.0
1128
+ * @param previousValue A previous return value from calling `process.cpuUsage()`
1129
+ */
1130
+ cpuUsage(previousValue?: CpuUsage): CpuUsage;
1131
+ /**
1132
+ * `process.nextTick()` adds `callback` to the "next tick queue". This queue is
1133
+ * fully drained after the current operation on the JavaScript stack runs to
1134
+ * completion and before the event loop is allowed to continue. It's possible to
1135
+ * create an infinite loop if one were to recursively call `process.nextTick()`.
1136
+ * See the [Event Loop](https://nodejs.org/en/docs/guides/event-loop-timers-and-nexttick/#process-nexttick) guide for more background.
1137
+ *
1138
+ * ```js
1139
+ * import { nextTick } from 'node:process';
1140
+ *
1141
+ * console.log('start');
1142
+ * nextTick(() => {
1143
+ * console.log('nextTick callback');
1144
+ * });
1145
+ * console.log('scheduled');
1146
+ * // Output:
1147
+ * // start
1148
+ * // scheduled
1149
+ * // nextTick callback
1150
+ * ```
1151
+ *
1152
+ * This is important when developing APIs in order to give users the opportunity
1153
+ * to assign event handlers _after_ an object has been constructed but before any
1154
+ * I/O has occurred:
1155
+ *
1156
+ * ```js
1157
+ * import { nextTick } from 'node:process';
1158
+ *
1159
+ * function MyThing(options) {
1160
+ * this.setupOptions(options);
1161
+ *
1162
+ * nextTick(() => {
1163
+ * this.startDoingStuff();
1164
+ * });
1165
+ * }
1166
+ *
1167
+ * const thing = new MyThing();
1168
+ * thing.getReadyForStuff();
1169
+ *
1170
+ * // thing.startDoingStuff() gets called now, not before.
1171
+ * ```
1172
+ *
1173
+ * It is very important for APIs to be either 100% synchronous or 100%
1174
+ * asynchronous. Consider this example:
1175
+ *
1176
+ * ```js
1177
+ * // WARNING! DO NOT USE! BAD UNSAFE HAZARD!
1178
+ * function maybeSync(arg, cb) {
1179
+ * if (arg) {
1180
+ * cb();
1181
+ * return;
1182
+ * }
1183
+ *
1184
+ * fs.stat('file', cb);
1185
+ * }
1186
+ * ```
1187
+ *
1188
+ * This API is hazardous because in the following case:
1189
+ *
1190
+ * ```js
1191
+ * const maybeTrue = Math.random() > 0.5;
1192
+ *
1193
+ * maybeSync(maybeTrue, () => {
1194
+ * foo();
1195
+ * });
1196
+ *
1197
+ * bar();
1198
+ * ```
1199
+ *
1200
+ * It is not clear whether `foo()` or `bar()` will be called first.
1201
+ *
1202
+ * The following approach is much better:
1203
+ *
1204
+ * ```js
1205
+ * import { nextTick } from 'node:process';
1206
+ *
1207
+ * function definitelyAsync(arg, cb) {
1208
+ * if (arg) {
1209
+ * nextTick(cb);
1210
+ * return;
1211
+ * }
1212
+ *
1213
+ * fs.stat('file', cb);
1214
+ * }
1215
+ * ```
1216
+ * @since v0.1.26
1217
+ * @param args Additional arguments to pass when invoking the `callback`
1218
+ */
1219
+ nextTick(callback: Function, ...args: any[]): void;
1220
+ /**
1221
+ * The `process.release` property returns an `Object` containing metadata related
1222
+ * to the current release, including URLs for the source tarball and headers-only
1223
+ * tarball.
1224
+ *
1225
+ * `process.release` contains the following properties:
1226
+ *
1227
+ * ```js
1228
+ * {
1229
+ * name: 'node',
1230
+ * lts: 'Hydrogen',
1231
+ * sourceUrl: 'https://nodejs.org/download/release/v18.12.0/node-v18.12.0.tar.gz',
1232
+ * headersUrl: 'https://nodejs.org/download/release/v18.12.0/node-v18.12.0-headers.tar.gz',
1233
+ * libUrl: 'https://nodejs.org/download/release/v18.12.0/win-x64/node.lib'
1234
+ * }
1235
+ * ```
1236
+ *
1237
+ * In custom builds from non-release versions of the source tree, only the`name` property may be present. The additional properties should not be
1238
+ * relied upon to exist.
1239
+ * @since v3.0.0
1240
+ */
1241
+ readonly release: ProcessRelease;
1242
+ features: {
1243
+ inspector: boolean;
1244
+ debug: boolean;
1245
+ uv: boolean;
1246
+ ipv6: boolean;
1247
+ tls_alpn: boolean;
1248
+ tls_sni: boolean;
1249
+ tls_ocsp: boolean;
1250
+ tls: boolean;
1251
+ };
1252
+ /**
1253
+ * `process.umask()` returns the Node.js process's file mode creation mask. Child
1254
+ * processes inherit the mask from the parent process.
1255
+ * @since v0.1.19
1256
+ * @deprecated Calling `process.umask()` with no argument causes the process-wide umask to be written twice. This introduces a race condition between threads, and is a potential *
1257
+ * security vulnerability. There is no safe, cross-platform alternative API.
1258
+ */
1259
+ umask(): number;
1260
+ /**
1261
+ * Can only be set if not in worker thread.
1262
+ */
1263
+ umask(mask: string | number): number;
1264
+ /**
1265
+ * The `process.uptime()` method returns the number of seconds the current Node.js
1266
+ * process has been running.
1267
+ *
1268
+ * The return value includes fractions of a second. Use `Math.floor()` to get whole
1269
+ * seconds.
1270
+ * @since v0.5.0
1271
+ */
1272
+ uptime(): number;
1273
+ hrtime: HRTime;
1274
+ /**
1275
+ * If Node.js is spawned with an IPC channel, the `process.send()` method can be
1276
+ * used to send messages to the parent process. Messages will be received as a `'message'` event on the parent's `ChildProcess` object.
1277
+ *
1278
+ * If Node.js was not spawned with an IPC channel, `process.send` will be`undefined`.
1279
+ *
1280
+ * The message goes through serialization and parsing. The resulting message might
1281
+ * not be the same as what is originally sent.
1282
+ * @since v0.5.9
1283
+ * @param options used to parameterize the sending of certain types of handles.`options` supports the following properties:
1284
+ */
1285
+ send?(
1286
+ message: any,
1287
+ sendHandle?: any,
1288
+ options?: {
1289
+ swallowErrors?: boolean | undefined;
1290
+ },
1291
+ callback?: (error: Error | null) => void
1292
+ ): boolean;
1293
+ /**
1294
+ * If the Node.js process is spawned with an IPC channel (see the `Child Process` and `Cluster` documentation), the `process.disconnect()` method will close the
1295
+ * IPC channel to the parent process, allowing the child process to exit gracefully
1296
+ * once there are no other connections keeping it alive.
1297
+ *
1298
+ * The effect of calling `process.disconnect()` is the same as calling `ChildProcess.disconnect()` from the parent process.
1299
+ *
1300
+ * If the Node.js process was not spawned with an IPC channel,`process.disconnect()` will be `undefined`.
1301
+ * @since v0.7.2
1302
+ */
1303
+ disconnect(): void;
1304
+ /**
1305
+ * If the Node.js process is spawned with an IPC channel (see the `Child Process` and `Cluster` documentation), the `process.connected` property will return`true` so long as the IPC
1306
+ * channel is connected and will return `false` after`process.disconnect()` is called.
1307
+ *
1308
+ * Once `process.connected` is `false`, it is no longer possible to send messages
1309
+ * over the IPC channel using `process.send()`.
1310
+ * @since v0.7.2
1311
+ */
1312
+ connected: boolean;
1313
+ /**
1314
+ * The `process.allowedNodeEnvironmentFlags` property is a special,
1315
+ * read-only `Set` of flags allowable within the `NODE_OPTIONS` environment variable.
1316
+ *
1317
+ * `process.allowedNodeEnvironmentFlags` extends `Set`, but overrides`Set.prototype.has` to recognize several different possible flag
1318
+ * representations. `process.allowedNodeEnvironmentFlags.has()` will
1319
+ * return `true` in the following cases:
1320
+ *
1321
+ * * Flags may omit leading single (`-`) or double (`--`) dashes; e.g.,`inspect-brk` for `--inspect-brk`, or `r` for `-r`.
1322
+ * * Flags passed through to V8 (as listed in `--v8-options`) may replace
1323
+ * one or more _non-leading_ dashes for an underscore, or vice-versa;
1324
+ * e.g., `--perf_basic_prof`, `--perf-basic-prof`, `--perf_basic-prof`,
1325
+ * etc.
1326
+ * * Flags may contain one or more equals (`=`) characters; all
1327
+ * characters after and including the first equals will be ignored;
1328
+ * e.g., `--stack-trace-limit=100`.
1329
+ * * Flags _must_ be allowable within `NODE_OPTIONS`.
1330
+ *
1331
+ * When iterating over `process.allowedNodeEnvironmentFlags`, flags will
1332
+ * appear only _once_; each will begin with one or more dashes. Flags
1333
+ * passed through to V8 will contain underscores instead of non-leading
1334
+ * dashes:
1335
+ *
1336
+ * ```js
1337
+ * import { allowedNodeEnvironmentFlags } from 'node:process';
1338
+ *
1339
+ * allowedNodeEnvironmentFlags.forEach((flag) => {
1340
+ * // -r
1341
+ * // --inspect-brk
1342
+ * // --abort_on_uncaught_exception
1343
+ * // ...
1344
+ * });
1345
+ * ```
1346
+ *
1347
+ * The methods `add()`, `clear()`, and `delete()` of`process.allowedNodeEnvironmentFlags` do nothing, and will fail
1348
+ * silently.
1349
+ *
1350
+ * If Node.js was compiled _without_ `NODE_OPTIONS` support (shown in {@link config}), `process.allowedNodeEnvironmentFlags` will
1351
+ * contain what _would have_ been allowable.
1352
+ * @since v10.10.0
1353
+ */
1354
+ allowedNodeEnvironmentFlags: ReadonlySet<string>;
1355
+ /**
1356
+ * `process.report` is an object whose methods are used to generate diagnostic
1357
+ * reports for the current process. Additional documentation is available in the `report documentation`.
1358
+ * @since v11.8.0
1359
+ */
1360
+ report?: ProcessReport | undefined;
1361
+ /**
1362
+ * ```js
1363
+ * import { resourceUsage } from 'node:process';
1364
+ *
1365
+ * console.log(resourceUsage());
1366
+ * /*
1367
+ * Will output:
1368
+ * {
1369
+ * userCPUTime: 82872,
1370
+ * systemCPUTime: 4143,
1371
+ * maxRSS: 33164,
1372
+ * sharedMemorySize: 0,
1373
+ * unsharedDataSize: 0,
1374
+ * unsharedStackSize: 0,
1375
+ * minorPageFault: 2469,
1376
+ * majorPageFault: 0,
1377
+ * swappedOut: 0,
1378
+ * fsRead: 0,
1379
+ * fsWrite: 8,
1380
+ * ipcSent: 0,
1381
+ * ipcReceived: 0,
1382
+ * signalsCount: 0,
1383
+ * voluntaryContextSwitches: 79,
1384
+ * involuntaryContextSwitches: 1
1385
+ * }
1386
+ *
1387
+ * ```
1388
+ * @since v12.6.0
1389
+ * @return the resource usage for the current process. All of these values come from the `uv_getrusage` call which returns a [`uv_rusage_t` struct][uv_rusage_t].
1390
+ */
1391
+ resourceUsage(): ResourceUsage;
1392
+ /**
1393
+ * The `process.traceDeprecation` property indicates whether the`--trace-deprecation` flag is set on the current Node.js process. See the
1394
+ * documentation for the `'warning' event` and the `emitWarning() method` for more information about this
1395
+ * flag's behavior.
1396
+ * @since v0.8.0
1397
+ */
1398
+ traceDeprecation: boolean;
1399
+ /* EventEmitter */
1400
+ addListener(event: 'beforeExit', listener: BeforeExitListener): this;
1401
+ addListener(event: 'disconnect', listener: DisconnectListener): this;
1402
+ addListener(event: 'exit', listener: ExitListener): this;
1403
+ addListener(event: 'rejectionHandled', listener: RejectionHandledListener): this;
1404
+ addListener(event: 'uncaughtException', listener: UncaughtExceptionListener): this;
1405
+ addListener(event: 'uncaughtExceptionMonitor', listener: UncaughtExceptionListener): this;
1406
+ addListener(event: 'unhandledRejection', listener: UnhandledRejectionListener): this;
1407
+ addListener(event: 'warning', listener: WarningListener): this;
1408
+ addListener(event: 'message', listener: MessageListener): this;
1409
+ addListener(event: Signals, listener: SignalsListener): this;
1410
+ addListener(event: 'multipleResolves', listener: MultipleResolveListener): this;
1411
+ addListener(event: 'worker', listener: WorkerListener): this;
1412
+ emit(event: 'beforeExit', code: number): boolean;
1413
+ emit(event: 'disconnect'): boolean;
1414
+ emit(event: 'exit', code: number): boolean;
1415
+ emit(event: 'rejectionHandled', promise: Promise<unknown>): boolean;
1416
+ emit(event: 'uncaughtException', error: Error): boolean;
1417
+ emit(event: 'uncaughtExceptionMonitor', error: Error): boolean;
1418
+ emit(event: 'unhandledRejection', reason: unknown, promise: Promise<unknown>): boolean;
1419
+ emit(event: 'warning', warning: Error): boolean;
1420
+ emit(event: 'message', message: unknown, sendHandle: unknown): this;
1421
+ emit(event: Signals, signal?: Signals): boolean;
1422
+ emit(event: 'multipleResolves', type: MultipleResolveType, promise: Promise<unknown>, value: unknown): this;
1423
+ emit(event: 'worker', listener: WorkerListener): this;
1424
+ on(event: 'beforeExit', listener: BeforeExitListener): this;
1425
+ on(event: 'disconnect', listener: DisconnectListener): this;
1426
+ on(event: 'exit', listener: ExitListener): this;
1427
+ on(event: 'rejectionHandled', listener: RejectionHandledListener): this;
1428
+ on(event: 'uncaughtException', listener: UncaughtExceptionListener): this;
1429
+ on(event: 'uncaughtExceptionMonitor', listener: UncaughtExceptionListener): this;
1430
+ on(event: 'unhandledRejection', listener: UnhandledRejectionListener): this;
1431
+ on(event: 'warning', listener: WarningListener): this;
1432
+ on(event: 'message', listener: MessageListener): this;
1433
+ on(event: Signals, listener: SignalsListener): this;
1434
+ on(event: 'multipleResolves', listener: MultipleResolveListener): this;
1435
+ on(event: 'worker', listener: WorkerListener): this;
1436
+ on(event: string | symbol, listener: (...args: any[]) => void): this;
1437
+ once(event: 'beforeExit', listener: BeforeExitListener): this;
1438
+ once(event: 'disconnect', listener: DisconnectListener): this;
1439
+ once(event: 'exit', listener: ExitListener): this;
1440
+ once(event: 'rejectionHandled', listener: RejectionHandledListener): this;
1441
+ once(event: 'uncaughtException', listener: UncaughtExceptionListener): this;
1442
+ once(event: 'uncaughtExceptionMonitor', listener: UncaughtExceptionListener): this;
1443
+ once(event: 'unhandledRejection', listener: UnhandledRejectionListener): this;
1444
+ once(event: 'warning', listener: WarningListener): this;
1445
+ once(event: 'message', listener: MessageListener): this;
1446
+ once(event: Signals, listener: SignalsListener): this;
1447
+ once(event: 'multipleResolves', listener: MultipleResolveListener): this;
1448
+ once(event: 'worker', listener: WorkerListener): this;
1449
+ once(event: string | symbol, listener: (...args: any[]) => void): this;
1450
+ prependListener(event: 'beforeExit', listener: BeforeExitListener): this;
1451
+ prependListener(event: 'disconnect', listener: DisconnectListener): this;
1452
+ prependListener(event: 'exit', listener: ExitListener): this;
1453
+ prependListener(event: 'rejectionHandled', listener: RejectionHandledListener): this;
1454
+ prependListener(event: 'uncaughtException', listener: UncaughtExceptionListener): this;
1455
+ prependListener(event: 'uncaughtExceptionMonitor', listener: UncaughtExceptionListener): this;
1456
+ prependListener(event: 'unhandledRejection', listener: UnhandledRejectionListener): this;
1457
+ prependListener(event: 'warning', listener: WarningListener): this;
1458
+ prependListener(event: 'message', listener: MessageListener): this;
1459
+ prependListener(event: Signals, listener: SignalsListener): this;
1460
+ prependListener(event: 'multipleResolves', listener: MultipleResolveListener): this;
1461
+ prependListener(event: 'worker', listener: WorkerListener): this;
1462
+ prependOnceListener(event: 'beforeExit', listener: BeforeExitListener): this;
1463
+ prependOnceListener(event: 'disconnect', listener: DisconnectListener): this;
1464
+ prependOnceListener(event: 'exit', listener: ExitListener): this;
1465
+ prependOnceListener(event: 'rejectionHandled', listener: RejectionHandledListener): this;
1466
+ prependOnceListener(event: 'uncaughtException', listener: UncaughtExceptionListener): this;
1467
+ prependOnceListener(event: 'uncaughtExceptionMonitor', listener: UncaughtExceptionListener): this;
1468
+ prependOnceListener(event: 'unhandledRejection', listener: UnhandledRejectionListener): this;
1469
+ prependOnceListener(event: 'warning', listener: WarningListener): this;
1470
+ prependOnceListener(event: 'message', listener: MessageListener): this;
1471
+ prependOnceListener(event: Signals, listener: SignalsListener): this;
1472
+ prependOnceListener(event: 'multipleResolves', listener: MultipleResolveListener): this;
1473
+ prependOnceListener(event: 'worker', listener: WorkerListener): this;
1474
+ listeners(event: 'beforeExit'): BeforeExitListener[];
1475
+ listeners(event: 'disconnect'): DisconnectListener[];
1476
+ listeners(event: 'exit'): ExitListener[];
1477
+ listeners(event: 'rejectionHandled'): RejectionHandledListener[];
1478
+ listeners(event: 'uncaughtException'): UncaughtExceptionListener[];
1479
+ listeners(event: 'uncaughtExceptionMonitor'): UncaughtExceptionListener[];
1480
+ listeners(event: 'unhandledRejection'): UnhandledRejectionListener[];
1481
+ listeners(event: 'warning'): WarningListener[];
1482
+ listeners(event: 'message'): MessageListener[];
1483
+ listeners(event: Signals): SignalsListener[];
1484
+ listeners(event: 'multipleResolves'): MultipleResolveListener[];
1485
+ listeners(event: 'worker'): WorkerListener[];
1486
+ }
1487
+ }
1488
+ }
1489
+ export = process;
1490
+ }
1491
+ declare module 'node:process' {
1492
+ import process = require('process');
1493
+ export = process;
1494
+ }