@continuous-labs/sdk 0.0.4 → 0.0.6

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 (254) hide show
  1. package/README.md +1 -1
  2. package/esm/funcs/simulations-create-simulation.d.ts +1 -1
  3. package/esm/funcs/simulations-create-simulation.js +1 -1
  4. package/esm/funcs/simulations-fork-simulation.d.ts +1 -1
  5. package/esm/funcs/simulations-fork-simulation.js +1 -1
  6. package/esm/funcs/simulations-get-simulation.d.ts +1 -1
  7. package/esm/funcs/simulations-get-simulation.js +1 -1
  8. package/esm/funcs/simulations-list-simulation-steps.d.ts +1 -1
  9. package/esm/funcs/simulations-list-simulation-steps.js +1 -1
  10. package/esm/funcs/simulations-mint-simulation-token.d.ts +1 -1
  11. package/esm/funcs/simulations-mint-simulation-token.js +1 -1
  12. package/esm/funcs/simulations-start-simulation.d.ts +1 -1
  13. package/esm/funcs/simulations-start-simulation.js +1 -1
  14. package/esm/funcs/simulations-stop-simulation.d.ts +1 -1
  15. package/esm/funcs/simulations-stop-simulation.js +1 -1
  16. package/esm/funcs/simulators-build-simulator.d.ts +1 -1
  17. package/esm/funcs/simulators-build-simulator.js +1 -1
  18. package/esm/funcs/worlds-build-world.d.ts +1 -1
  19. package/esm/funcs/worlds-build-world.js +1 -1
  20. package/esm/funcs/worlds-start-world.d.ts +1 -1
  21. package/esm/funcs/worlds-start-world.js +1 -1
  22. package/esm/lib/config.d.ts +2 -2
  23. package/esm/lib/config.js +2 -2
  24. package/esm/models/build-simulator-request.d.ts +6 -6
  25. package/esm/models/build-simulator-request.js +1 -1
  26. package/esm/models/build-world-request.d.ts +2 -2
  27. package/esm/models/create-simulation-request.d.ts +1 -1
  28. package/esm/models/created-simulation.d.ts +8 -8
  29. package/esm/models/created-simulation.js +1 -1
  30. package/esm/models/list-worlds-response.d.ts +1 -1
  31. package/esm/models/operations/build-simulator.d.ts +1 -1
  32. package/esm/models/operations/cancel-simulator-build.d.ts +1 -1
  33. package/esm/models/operations/cancel-world-build.d.ts +1 -1
  34. package/esm/models/operations/delete-simulation.d.ts +1 -1
  35. package/esm/models/operations/delete-simulator.d.ts +1 -1
  36. package/esm/models/operations/delete-world.d.ts +1 -1
  37. package/esm/models/operations/fork-simulation.d.ts +1 -1
  38. package/esm/models/operations/get-simulation.d.ts +1 -1
  39. package/esm/models/operations/get-simulator.d.ts +1 -1
  40. package/esm/models/operations/get-world.d.ts +1 -1
  41. package/esm/models/operations/list-simulation-steps.d.ts +1 -1
  42. package/esm/models/operations/list-simulations.d.ts +4 -4
  43. package/esm/models/operations/list-simulations.js +1 -1
  44. package/esm/models/operations/list-simulators.d.ts +1 -1
  45. package/esm/models/operations/list-worlds.d.ts +1 -1
  46. package/esm/models/operations/mint-simulation-token.d.ts +1 -1
  47. package/esm/models/operations/start-simulation.d.ts +1 -1
  48. package/esm/models/operations/start-world.d.ts +1 -1
  49. package/esm/models/operations/stop-simulation.d.ts +1 -1
  50. package/esm/models/operations/stop-world.d.ts +1 -1
  51. package/esm/models/simulation-token.d.ts +1 -1
  52. package/esm/models/simulation.d.ts +7 -7
  53. package/esm/models/simulation.js +1 -1
  54. package/esm/models/simulator.d.ts +8 -8
  55. package/esm/models/simulator.js +2 -2
  56. package/esm/models/step.d.ts +2 -2
  57. package/esm/models/world-simulation.d.ts +2 -2
  58. package/esm/models/world.d.ts +7 -7
  59. package/esm/models/world.js +1 -1
  60. package/esm/sdk/simulations.d.ts +7 -7
  61. package/esm/sdk/simulations.js +7 -7
  62. package/esm/sdk/simulators.d.ts +1 -1
  63. package/esm/sdk/simulators.js +1 -1
  64. package/esm/sdk/worlds.d.ts +2 -2
  65. package/esm/sdk/worlds.js +2 -2
  66. package/jsr.json +1 -1
  67. package/package.json +2 -2
  68. package/src/funcs/simulations-create-simulation.ts +1 -1
  69. package/src/funcs/simulations-fork-simulation.ts +1 -1
  70. package/src/funcs/simulations-get-simulation.ts +1 -1
  71. package/src/funcs/simulations-list-simulation-steps.ts +1 -1
  72. package/src/funcs/simulations-mint-simulation-token.ts +1 -1
  73. package/src/funcs/simulations-start-simulation.ts +1 -1
  74. package/src/funcs/simulations-stop-simulation.ts +1 -1
  75. package/src/funcs/simulators-build-simulator.ts +1 -1
  76. package/src/funcs/worlds-build-world.ts +1 -1
  77. package/src/funcs/worlds-start-world.ts +1 -1
  78. package/src/lib/config.ts +2 -2
  79. package/src/models/build-simulator-request.ts +6 -6
  80. package/src/models/build-world-request.ts +2 -2
  81. package/src/models/create-simulation-request.ts +1 -1
  82. package/src/models/created-simulation.ts +8 -8
  83. package/src/models/list-worlds-response.ts +1 -1
  84. package/src/models/operations/build-simulator.ts +1 -1
  85. package/src/models/operations/cancel-simulator-build.ts +1 -1
  86. package/src/models/operations/cancel-world-build.ts +1 -1
  87. package/src/models/operations/delete-simulation.ts +1 -1
  88. package/src/models/operations/delete-simulator.ts +1 -1
  89. package/src/models/operations/delete-world.ts +1 -1
  90. package/src/models/operations/fork-simulation.ts +1 -1
  91. package/src/models/operations/get-simulation.ts +1 -1
  92. package/src/models/operations/get-simulator.ts +1 -1
  93. package/src/models/operations/get-world.ts +1 -1
  94. package/src/models/operations/list-simulation-steps.ts +1 -1
  95. package/src/models/operations/list-simulations.ts +4 -4
  96. package/src/models/operations/list-simulators.ts +1 -1
  97. package/src/models/operations/list-worlds.ts +1 -1
  98. package/src/models/operations/mint-simulation-token.ts +1 -1
  99. package/src/models/operations/start-simulation.ts +1 -1
  100. package/src/models/operations/start-world.ts +1 -1
  101. package/src/models/operations/stop-simulation.ts +1 -1
  102. package/src/models/operations/stop-world.ts +1 -1
  103. package/src/models/simulation-token.ts +1 -1
  104. package/src/models/simulation.ts +7 -7
  105. package/src/models/simulator.ts +8 -8
  106. package/src/models/step.ts +2 -2
  107. package/src/models/world-simulation.ts +2 -2
  108. package/src/models/world.ts +7 -7
  109. package/src/sdk/simulations.ts +7 -7
  110. package/src/sdk/simulators.ts +1 -1
  111. package/src/sdk/worlds.ts +2 -2
  112. package/esm/models/errors/continuous-simulation-default-error.d.ts +0 -10
  113. package/esm/models/errors/continuous-simulation-default-error.d.ts.map +0 -1
  114. package/esm/models/errors/continuous-simulation-default-error.js +0 -30
  115. package/esm/models/errors/continuous-simulation-default-error.js.map +0 -1
  116. package/esm/models/errors/continuous-simulation-error.d.ts +0 -19
  117. package/esm/models/errors/continuous-simulation-error.d.ts.map +0 -1
  118. package/esm/models/errors/continuous-simulation-error.js +0 -26
  119. package/esm/models/errors/continuous-simulation-error.js.map +0 -1
  120. package/examples/node_modules/@types/node/assert/strict.d.ts +0 -8
  121. package/examples/node_modules/@types/node/assert.d.ts +0 -1062
  122. package/examples/node_modules/@types/node/async_hooks.d.ts +0 -605
  123. package/examples/node_modules/@types/node/buffer.buffer.d.ts +0 -471
  124. package/examples/node_modules/@types/node/buffer.d.ts +0 -1936
  125. package/examples/node_modules/@types/node/child_process.d.ts +0 -1475
  126. package/examples/node_modules/@types/node/cluster.d.ts +0 -577
  127. package/examples/node_modules/@types/node/compatibility/disposable.d.ts +0 -16
  128. package/examples/node_modules/@types/node/compatibility/index.d.ts +0 -9
  129. package/examples/node_modules/@types/node/compatibility/indexable.d.ts +0 -20
  130. package/examples/node_modules/@types/node/compatibility/iterators.d.ts +0 -21
  131. package/examples/node_modules/@types/node/console.d.ts +0 -452
  132. package/examples/node_modules/@types/node/constants.d.ts +0 -21
  133. package/examples/node_modules/@types/node/crypto.d.ts +0 -4590
  134. package/examples/node_modules/@types/node/dgram.d.ts +0 -597
  135. package/examples/node_modules/@types/node/diagnostics_channel.d.ts +0 -578
  136. package/examples/node_modules/@types/node/dns/promises.d.ts +0 -479
  137. package/examples/node_modules/@types/node/dns.d.ts +0 -871
  138. package/examples/node_modules/@types/node/domain.d.ts +0 -170
  139. package/examples/node_modules/@types/node/events.d.ts +0 -977
  140. package/examples/node_modules/@types/node/fs/promises.d.ts +0 -1270
  141. package/examples/node_modules/@types/node/fs.d.ts +0 -4375
  142. package/examples/node_modules/@types/node/globals.d.ts +0 -172
  143. package/examples/node_modules/@types/node/globals.typedarray.d.ts +0 -38
  144. package/examples/node_modules/@types/node/http.d.ts +0 -2049
  145. package/examples/node_modules/@types/node/http2.d.ts +0 -2712
  146. package/examples/node_modules/@types/node/https.d.ts +0 -578
  147. package/examples/node_modules/@types/node/index.d.ts +0 -93
  148. package/examples/node_modules/@types/node/inspector.generated.d.ts +0 -3966
  149. package/examples/node_modules/@types/node/module.d.ts +0 -539
  150. package/examples/node_modules/@types/node/net.d.ts +0 -1031
  151. package/examples/node_modules/@types/node/os.d.ts +0 -506
  152. package/examples/node_modules/@types/node/path.d.ts +0 -200
  153. package/examples/node_modules/@types/node/perf_hooks.d.ts +0 -961
  154. package/examples/node_modules/@types/node/process.d.ts +0 -1961
  155. package/examples/node_modules/@types/node/punycode.d.ts +0 -117
  156. package/examples/node_modules/@types/node/querystring.d.ts +0 -152
  157. package/examples/node_modules/@types/node/readline/promises.d.ts +0 -162
  158. package/examples/node_modules/@types/node/readline.d.ts +0 -589
  159. package/examples/node_modules/@types/node/repl.d.ts +0 -430
  160. package/examples/node_modules/@types/node/sea.d.ts +0 -153
  161. package/examples/node_modules/@types/node/stream/consumers.d.ts +0 -38
  162. package/examples/node_modules/@types/node/stream/promises.d.ts +0 -90
  163. package/examples/node_modules/@types/node/stream/web.d.ts +0 -533
  164. package/examples/node_modules/@types/node/stream.d.ts +0 -1698
  165. package/examples/node_modules/@types/node/string_decoder.d.ts +0 -67
  166. package/examples/node_modules/@types/node/test.d.ts +0 -1787
  167. package/examples/node_modules/@types/node/timers/promises.d.ts +0 -108
  168. package/examples/node_modules/@types/node/timers.d.ts +0 -286
  169. package/examples/node_modules/@types/node/tls.d.ts +0 -1259
  170. package/examples/node_modules/@types/node/trace_events.d.ts +0 -197
  171. package/examples/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +0 -468
  172. package/examples/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +0 -34
  173. package/examples/node_modules/@types/node/ts5.6/index.d.ts +0 -93
  174. package/examples/node_modules/@types/node/tty.d.ts +0 -208
  175. package/examples/node_modules/@types/node/url.d.ts +0 -964
  176. package/examples/node_modules/@types/node/util.d.ts +0 -2331
  177. package/examples/node_modules/@types/node/v8.d.ts +0 -809
  178. package/examples/node_modules/@types/node/vm.d.ts +0 -1001
  179. package/examples/node_modules/@types/node/wasi.d.ts +0 -181
  180. package/examples/node_modules/@types/node/web-globals/abortcontroller.d.ts +0 -34
  181. package/examples/node_modules/@types/node/web-globals/domexception.d.ts +0 -68
  182. package/examples/node_modules/@types/node/web-globals/events.d.ts +0 -97
  183. package/examples/node_modules/@types/node/web-globals/fetch.d.ts +0 -55
  184. package/examples/node_modules/@types/node/worker_threads.d.ts +0 -715
  185. package/examples/node_modules/@types/node/zlib.d.ts +0 -598
  186. package/examples/node_modules/dotenv/config.d.ts +0 -1
  187. package/examples/node_modules/dotenv/config.js +0 -9
  188. package/examples/node_modules/dotenv/lib/cli-options.js +0 -17
  189. package/examples/node_modules/dotenv/lib/env-options.js +0 -28
  190. package/examples/node_modules/dotenv/lib/main.d.ts +0 -162
  191. package/examples/node_modules/dotenv/lib/main.js +0 -386
  192. package/examples/node_modules/esbuild/install.js +0 -300
  193. package/examples/node_modules/esbuild/lib/main.d.ts +0 -720
  194. package/examples/node_modules/esbuild/lib/main.js +0 -2536
  195. package/examples/node_modules/tsx/dist/cjs/api/index.mjs +0 -1
  196. package/examples/node_modules/tsx/dist/cjs/index.mjs +0 -1
  197. package/examples/node_modules/tsx/dist/cli.mjs +0 -55
  198. package/examples/node_modules/tsx/dist/client-D_mPDF5S.mjs +0 -1
  199. package/examples/node_modules/tsx/dist/esm/api/index.mjs +0 -1
  200. package/examples/node_modules/tsx/dist/esm/index.mjs +0 -1
  201. package/examples/node_modules/tsx/dist/get-pipe-path-_tAJyU_v.mjs +0 -1
  202. package/examples/node_modules/tsx/dist/index-DCefr8NP.mjs +0 -14
  203. package/examples/node_modules/tsx/dist/index-gbaejti9.mjs +0 -1
  204. package/examples/node_modules/tsx/dist/lexer-DQCqS3nf.mjs +0 -3
  205. package/examples/node_modules/tsx/dist/loader.mjs +0 -1
  206. package/examples/node_modules/tsx/dist/node-features-JeyyvQz6.mjs +0 -1
  207. package/examples/node_modules/tsx/dist/package-BL7Whz21.mjs +0 -1
  208. package/examples/node_modules/tsx/dist/patch-repl.mjs +0 -1
  209. package/examples/node_modules/tsx/dist/preflight.mjs +0 -1
  210. package/examples/node_modules/tsx/dist/register-DHgpdRjs.mjs +0 -10
  211. package/examples/node_modules/tsx/dist/register-SoqaU4rg.mjs +0 -2
  212. package/examples/node_modules/tsx/dist/repl.mjs +0 -3
  213. package/examples/node_modules/tsx/dist/require-Cuv-0BLU.mjs +0 -1
  214. package/examples/node_modules/tsx/dist/suppress-warnings.mjs +0 -1
  215. package/examples/node_modules/tsx/dist/temporary-directory-BDDVQOvU.mjs +0 -1
  216. package/examples/node_modules/tsx/dist/types-Cxp8y2TL.d.ts +0 -5
  217. package/examples/node_modules/undici-types/agent.d.ts +0 -31
  218. package/examples/node_modules/undici-types/api.d.ts +0 -43
  219. package/examples/node_modules/undici-types/balanced-pool.d.ts +0 -29
  220. package/examples/node_modules/undici-types/cache.d.ts +0 -36
  221. package/examples/node_modules/undici-types/client.d.ts +0 -108
  222. package/examples/node_modules/undici-types/connector.d.ts +0 -34
  223. package/examples/node_modules/undici-types/content-type.d.ts +0 -21
  224. package/examples/node_modules/undici-types/cookies.d.ts +0 -28
  225. package/examples/node_modules/undici-types/diagnostics-channel.d.ts +0 -66
  226. package/examples/node_modules/undici-types/dispatcher.d.ts +0 -256
  227. package/examples/node_modules/undici-types/env-http-proxy-agent.d.ts +0 -21
  228. package/examples/node_modules/undici-types/errors.d.ts +0 -149
  229. package/examples/node_modules/undici-types/eventsource.d.ts +0 -61
  230. package/examples/node_modules/undici-types/fetch.d.ts +0 -209
  231. package/examples/node_modules/undici-types/file.d.ts +0 -39
  232. package/examples/node_modules/undici-types/filereader.d.ts +0 -54
  233. package/examples/node_modules/undici-types/formdata.d.ts +0 -108
  234. package/examples/node_modules/undici-types/global-dispatcher.d.ts +0 -9
  235. package/examples/node_modules/undici-types/global-origin.d.ts +0 -7
  236. package/examples/node_modules/undici-types/handlers.d.ts +0 -15
  237. package/examples/node_modules/undici-types/header.d.ts +0 -4
  238. package/examples/node_modules/undici-types/index.d.ts +0 -71
  239. package/examples/node_modules/undici-types/interceptors.d.ts +0 -17
  240. package/examples/node_modules/undici-types/mock-agent.d.ts +0 -50
  241. package/examples/node_modules/undici-types/mock-client.d.ts +0 -25
  242. package/examples/node_modules/undici-types/mock-errors.d.ts +0 -12
  243. package/examples/node_modules/undici-types/mock-interceptor.d.ts +0 -93
  244. package/examples/node_modules/undici-types/mock-pool.d.ts +0 -25
  245. package/examples/node_modules/undici-types/patch.d.ts +0 -33
  246. package/examples/node_modules/undici-types/pool-stats.d.ts +0 -19
  247. package/examples/node_modules/undici-types/pool.d.ts +0 -39
  248. package/examples/node_modules/undici-types/proxy-agent.d.ts +0 -28
  249. package/examples/node_modules/undici-types/readable.d.ts +0 -65
  250. package/examples/node_modules/undici-types/retry-agent.d.ts +0 -8
  251. package/examples/node_modules/undici-types/retry-handler.d.ts +0 -116
  252. package/examples/node_modules/undici-types/util.d.ts +0 -18
  253. package/examples/node_modules/undici-types/webidl.d.ts +0 -228
  254. package/examples/node_modules/undici-types/websocket.d.ts +0 -150
@@ -1,578 +0,0 @@
1
- /**
2
- * HTTPS is the HTTP protocol over TLS/SSL. In Node.js this is implemented as a
3
- * separate module.
4
- * @see [source](https://github.com/nodejs/node/blob/v20.13.1/lib/https.js)
5
- */
6
- declare module "https" {
7
- import { NonSharedBuffer } from "node:buffer";
8
- import { Duplex } from "node:stream";
9
- import * as tls from "node:tls";
10
- import * as http from "node:http";
11
- import { URL } from "node:url";
12
- interface ServerOptions<
13
- Request extends typeof http.IncomingMessage = typeof http.IncomingMessage,
14
- Response extends typeof http.ServerResponse<InstanceType<Request>> = typeof http.ServerResponse,
15
- > extends http.ServerOptions<Request, Response>, tls.TlsOptions {}
16
- interface RequestOptions extends http.RequestOptions, tls.SecureContextOptions {
17
- checkServerIdentity?: typeof tls.checkServerIdentity | undefined;
18
- rejectUnauthorized?: boolean | undefined; // Defaults to true
19
- servername?: string | undefined; // SNI TLS Extension
20
- }
21
- interface AgentOptions extends http.AgentOptions, tls.ConnectionOptions {
22
- rejectUnauthorized?: boolean | undefined;
23
- maxCachedSessions?: number | undefined;
24
- }
25
- /**
26
- * An `Agent` object for HTTPS similar to `http.Agent`. See {@link request} for more information.
27
- * @since v0.4.5
28
- */
29
- class Agent extends http.Agent {
30
- constructor(options?: AgentOptions);
31
- options: AgentOptions;
32
- createConnection(
33
- options: RequestOptions,
34
- callback?: (err: Error | null, stream: Duplex) => void,
35
- ): Duplex | null | undefined;
36
- getName(options?: RequestOptions): string;
37
- }
38
- interface Server<
39
- Request extends typeof http.IncomingMessage = typeof http.IncomingMessage,
40
- Response extends typeof http.ServerResponse<InstanceType<Request>> = typeof http.ServerResponse,
41
- > extends http.Server<Request, Response> {}
42
- /**
43
- * See `http.Server` for more information.
44
- * @since v0.3.4
45
- */
46
- class Server<
47
- Request extends typeof http.IncomingMessage = typeof http.IncomingMessage,
48
- Response extends typeof http.ServerResponse<InstanceType<Request>> = typeof http.ServerResponse,
49
- > extends tls.Server {
50
- constructor(requestListener?: http.RequestListener<Request, Response>);
51
- constructor(
52
- options: ServerOptions<Request, Response>,
53
- requestListener?: http.RequestListener<Request, Response>,
54
- );
55
- /**
56
- * Closes all connections connected to this server.
57
- * @since v18.2.0
58
- */
59
- closeAllConnections(): void;
60
- /**
61
- * Closes all connections connected to this server which are not sending a request or waiting for a response.
62
- * @since v18.2.0
63
- */
64
- closeIdleConnections(): void;
65
- addListener(event: string, listener: (...args: any[]) => void): this;
66
- addListener(event: "keylog", listener: (line: NonSharedBuffer, tlsSocket: tls.TLSSocket) => void): this;
67
- addListener(
68
- event: "newSession",
69
- listener: (sessionId: NonSharedBuffer, sessionData: NonSharedBuffer, callback: () => void) => void,
70
- ): this;
71
- addListener(
72
- event: "OCSPRequest",
73
- listener: (
74
- certificate: NonSharedBuffer,
75
- issuer: NonSharedBuffer,
76
- callback: (err: Error | null, resp: Buffer | null) => void,
77
- ) => void,
78
- ): this;
79
- addListener(
80
- event: "resumeSession",
81
- listener: (
82
- sessionId: NonSharedBuffer,
83
- callback: (err: Error | null, sessionData: Buffer | null) => void,
84
- ) => void,
85
- ): this;
86
- addListener(event: "secureConnection", listener: (tlsSocket: tls.TLSSocket) => void): this;
87
- addListener(event: "tlsClientError", listener: (err: Error, tlsSocket: tls.TLSSocket) => void): this;
88
- addListener(event: "close", listener: () => void): this;
89
- addListener(event: "connection", listener: (socket: Duplex) => void): this;
90
- addListener(event: "error", listener: (err: Error) => void): this;
91
- addListener(event: "listening", listener: () => void): this;
92
- addListener(event: "checkContinue", listener: http.RequestListener<Request, Response>): this;
93
- addListener(event: "checkExpectation", listener: http.RequestListener<Request, Response>): this;
94
- addListener(event: "clientError", listener: (err: Error, socket: Duplex) => void): this;
95
- addListener(
96
- event: "connect",
97
- listener: (req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer) => void,
98
- ): this;
99
- addListener(event: "request", listener: http.RequestListener<Request, Response>): this;
100
- addListener(
101
- event: "upgrade",
102
- listener: (req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer) => void,
103
- ): this;
104
- emit(event: string, ...args: any[]): boolean;
105
- emit(event: "keylog", line: NonSharedBuffer, tlsSocket: tls.TLSSocket): boolean;
106
- emit(
107
- event: "newSession",
108
- sessionId: NonSharedBuffer,
109
- sessionData: NonSharedBuffer,
110
- callback: () => void,
111
- ): boolean;
112
- emit(
113
- event: "OCSPRequest",
114
- certificate: NonSharedBuffer,
115
- issuer: NonSharedBuffer,
116
- callback: (err: Error | null, resp: Buffer | null) => void,
117
- ): boolean;
118
- emit(
119
- event: "resumeSession",
120
- sessionId: NonSharedBuffer,
121
- callback: (err: Error | null, sessionData: Buffer | null) => void,
122
- ): boolean;
123
- emit(event: "secureConnection", tlsSocket: tls.TLSSocket): boolean;
124
- emit(event: "tlsClientError", err: Error, tlsSocket: tls.TLSSocket): boolean;
125
- emit(event: "close"): boolean;
126
- emit(event: "connection", socket: Duplex): boolean;
127
- emit(event: "error", err: Error): boolean;
128
- emit(event: "listening"): boolean;
129
- emit(
130
- event: "checkContinue",
131
- req: InstanceType<Request>,
132
- res: InstanceType<Response>,
133
- ): boolean;
134
- emit(
135
- event: "checkExpectation",
136
- req: InstanceType<Request>,
137
- res: InstanceType<Response>,
138
- ): boolean;
139
- emit(event: "clientError", err: Error, socket: Duplex): boolean;
140
- emit(event: "connect", req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer): boolean;
141
- emit(
142
- event: "request",
143
- req: InstanceType<Request>,
144
- res: InstanceType<Response>,
145
- ): boolean;
146
- emit(event: "upgrade", req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer): boolean;
147
- on(event: string, listener: (...args: any[]) => void): this;
148
- on(event: "keylog", listener: (line: NonSharedBuffer, tlsSocket: tls.TLSSocket) => void): this;
149
- on(
150
- event: "newSession",
151
- listener: (sessionId: NonSharedBuffer, sessionData: NonSharedBuffer, callback: () => void) => void,
152
- ): this;
153
- on(
154
- event: "OCSPRequest",
155
- listener: (
156
- certificate: NonSharedBuffer,
157
- issuer: NonSharedBuffer,
158
- callback: (err: Error | null, resp: Buffer | null) => void,
159
- ) => void,
160
- ): this;
161
- on(
162
- event: "resumeSession",
163
- listener: (
164
- sessionId: NonSharedBuffer,
165
- callback: (err: Error | null, sessionData: Buffer | null) => void,
166
- ) => void,
167
- ): this;
168
- on(event: "secureConnection", listener: (tlsSocket: tls.TLSSocket) => void): this;
169
- on(event: "tlsClientError", listener: (err: Error, tlsSocket: tls.TLSSocket) => void): this;
170
- on(event: "close", listener: () => void): this;
171
- on(event: "connection", listener: (socket: Duplex) => void): this;
172
- on(event: "error", listener: (err: Error) => void): this;
173
- on(event: "listening", listener: () => void): this;
174
- on(event: "checkContinue", listener: http.RequestListener<Request, Response>): this;
175
- on(event: "checkExpectation", listener: http.RequestListener<Request, Response>): this;
176
- on(event: "clientError", listener: (err: Error, socket: Duplex) => void): this;
177
- on(
178
- event: "connect",
179
- listener: (req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer) => void,
180
- ): this;
181
- on(event: "request", listener: http.RequestListener<Request, Response>): this;
182
- on(
183
- event: "upgrade",
184
- listener: (req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer) => void,
185
- ): this;
186
- once(event: string, listener: (...args: any[]) => void): this;
187
- once(event: "keylog", listener: (line: NonSharedBuffer, tlsSocket: tls.TLSSocket) => void): this;
188
- once(
189
- event: "newSession",
190
- listener: (sessionId: NonSharedBuffer, sessionData: NonSharedBuffer, callback: () => void) => void,
191
- ): this;
192
- once(
193
- event: "OCSPRequest",
194
- listener: (
195
- certificate: NonSharedBuffer,
196
- issuer: NonSharedBuffer,
197
- callback: (err: Error | null, resp: Buffer | null) => void,
198
- ) => void,
199
- ): this;
200
- once(
201
- event: "resumeSession",
202
- listener: (
203
- sessionId: NonSharedBuffer,
204
- callback: (err: Error | null, sessionData: Buffer | null) => void,
205
- ) => void,
206
- ): this;
207
- once(event: "secureConnection", listener: (tlsSocket: tls.TLSSocket) => void): this;
208
- once(event: "tlsClientError", listener: (err: Error, tlsSocket: tls.TLSSocket) => void): this;
209
- once(event: "close", listener: () => void): this;
210
- once(event: "connection", listener: (socket: Duplex) => void): this;
211
- once(event: "error", listener: (err: Error) => void): this;
212
- once(event: "listening", listener: () => void): this;
213
- once(event: "checkContinue", listener: http.RequestListener<Request, Response>): this;
214
- once(event: "checkExpectation", listener: http.RequestListener<Request, Response>): this;
215
- once(event: "clientError", listener: (err: Error, socket: Duplex) => void): this;
216
- once(
217
- event: "connect",
218
- listener: (req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer) => void,
219
- ): this;
220
- once(event: "request", listener: http.RequestListener<Request, Response>): this;
221
- once(
222
- event: "upgrade",
223
- listener: (req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer) => void,
224
- ): this;
225
- prependListener(event: string, listener: (...args: any[]) => void): this;
226
- prependListener(event: "keylog", listener: (line: NonSharedBuffer, tlsSocket: tls.TLSSocket) => void): this;
227
- prependListener(
228
- event: "newSession",
229
- listener: (sessionId: NonSharedBuffer, sessionData: NonSharedBuffer, callback: () => void) => void,
230
- ): this;
231
- prependListener(
232
- event: "OCSPRequest",
233
- listener: (
234
- certificate: NonSharedBuffer,
235
- issuer: NonSharedBuffer,
236
- callback: (err: Error | null, resp: Buffer | null) => void,
237
- ) => void,
238
- ): this;
239
- prependListener(
240
- event: "resumeSession",
241
- listener: (
242
- sessionId: NonSharedBuffer,
243
- callback: (err: Error | null, sessionData: Buffer | null) => void,
244
- ) => void,
245
- ): this;
246
- prependListener(event: "secureConnection", listener: (tlsSocket: tls.TLSSocket) => void): this;
247
- prependListener(event: "tlsClientError", listener: (err: Error, tlsSocket: tls.TLSSocket) => void): this;
248
- prependListener(event: "close", listener: () => void): this;
249
- prependListener(event: "connection", listener: (socket: Duplex) => void): this;
250
- prependListener(event: "error", listener: (err: Error) => void): this;
251
- prependListener(event: "listening", listener: () => void): this;
252
- prependListener(event: "checkContinue", listener: http.RequestListener<Request, Response>): this;
253
- prependListener(event: "checkExpectation", listener: http.RequestListener<Request, Response>): this;
254
- prependListener(event: "clientError", listener: (err: Error, socket: Duplex) => void): this;
255
- prependListener(
256
- event: "connect",
257
- listener: (req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer) => void,
258
- ): this;
259
- prependListener(event: "request", listener: http.RequestListener<Request, Response>): this;
260
- prependListener(
261
- event: "upgrade",
262
- listener: (req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer) => void,
263
- ): this;
264
- prependOnceListener(event: string, listener: (...args: any[]) => void): this;
265
- prependOnceListener(event: "keylog", listener: (line: NonSharedBuffer, tlsSocket: tls.TLSSocket) => void): this;
266
- prependOnceListener(
267
- event: "newSession",
268
- listener: (sessionId: NonSharedBuffer, sessionData: NonSharedBuffer, callback: () => void) => void,
269
- ): this;
270
- prependOnceListener(
271
- event: "OCSPRequest",
272
- listener: (
273
- certificate: NonSharedBuffer,
274
- issuer: NonSharedBuffer,
275
- callback: (err: Error | null, resp: Buffer | null) => void,
276
- ) => void,
277
- ): this;
278
- prependOnceListener(
279
- event: "resumeSession",
280
- listener: (
281
- sessionId: NonSharedBuffer,
282
- callback: (err: Error | null, sessionData: Buffer | null) => void,
283
- ) => void,
284
- ): this;
285
- prependOnceListener(event: "secureConnection", listener: (tlsSocket: tls.TLSSocket) => void): this;
286
- prependOnceListener(event: "tlsClientError", listener: (err: Error, tlsSocket: tls.TLSSocket) => void): this;
287
- prependOnceListener(event: "close", listener: () => void): this;
288
- prependOnceListener(event: "connection", listener: (socket: Duplex) => void): this;
289
- prependOnceListener(event: "error", listener: (err: Error) => void): this;
290
- prependOnceListener(event: "listening", listener: () => void): this;
291
- prependOnceListener(event: "checkContinue", listener: http.RequestListener<Request, Response>): this;
292
- prependOnceListener(event: "checkExpectation", listener: http.RequestListener<Request, Response>): this;
293
- prependOnceListener(event: "clientError", listener: (err: Error, socket: Duplex) => void): this;
294
- prependOnceListener(
295
- event: "connect",
296
- listener: (req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer) => void,
297
- ): this;
298
- prependOnceListener(event: "request", listener: http.RequestListener<Request, Response>): this;
299
- prependOnceListener(
300
- event: "upgrade",
301
- listener: (req: InstanceType<Request>, socket: Duplex, head: NonSharedBuffer) => void,
302
- ): this;
303
- }
304
- /**
305
- * ```js
306
- * // curl -k https://localhost:8000/
307
- * import https from 'node:https';
308
- * import fs from 'node:fs';
309
- *
310
- * const options = {
311
- * key: fs.readFileSync('test/fixtures/keys/agent2-key.pem'),
312
- * cert: fs.readFileSync('test/fixtures/keys/agent2-cert.pem'),
313
- * };
314
- *
315
- * https.createServer(options, (req, res) => {
316
- * res.writeHead(200);
317
- * res.end('hello world\n');
318
- * }).listen(8000);
319
- * ```
320
- *
321
- * Or
322
- *
323
- * ```js
324
- * import https from 'node:https';
325
- * import fs from 'node:fs';
326
- *
327
- * const options = {
328
- * pfx: fs.readFileSync('test/fixtures/test_cert.pfx'),
329
- * passphrase: 'sample',
330
- * };
331
- *
332
- * https.createServer(options, (req, res) => {
333
- * res.writeHead(200);
334
- * res.end('hello world\n');
335
- * }).listen(8000);
336
- * ```
337
- * @since v0.3.4
338
- * @param options Accepts `options` from `createServer`, `createSecureContext` and `createServer`.
339
- * @param requestListener A listener to be added to the `'request'` event.
340
- */
341
- function createServer<
342
- Request extends typeof http.IncomingMessage = typeof http.IncomingMessage,
343
- Response extends typeof http.ServerResponse<InstanceType<Request>> = typeof http.ServerResponse,
344
- >(requestListener?: http.RequestListener<Request, Response>): Server<Request, Response>;
345
- function createServer<
346
- Request extends typeof http.IncomingMessage = typeof http.IncomingMessage,
347
- Response extends typeof http.ServerResponse<InstanceType<Request>> = typeof http.ServerResponse,
348
- >(
349
- options: ServerOptions<Request, Response>,
350
- requestListener?: http.RequestListener<Request, Response>,
351
- ): Server<Request, Response>;
352
- /**
353
- * Makes a request to a secure web server.
354
- *
355
- * The following additional `options` from `tls.connect()` are also accepted: `ca`, `cert`, `ciphers`, `clientCertEngine`, `crl`, `dhparam`, `ecdhCurve`, `honorCipherOrder`, `key`, `passphrase`,
356
- * `pfx`, `rejectUnauthorized`, `secureOptions`, `secureProtocol`, `servername`, `sessionIdContext`, `highWaterMark`.
357
- *
358
- * `options` can be an object, a string, or a `URL` object. If `options` is a
359
- * string, it is automatically parsed with `new URL()`. If it is a `URL` object, it will be automatically converted to an ordinary `options` object.
360
- *
361
- * `https.request()` returns an instance of the `http.ClientRequest` class. The `ClientRequest` instance is a writable stream. If one needs to
362
- * upload a file with a POST request, then write to the `ClientRequest` object.
363
- *
364
- * ```js
365
- * import https from 'node:https';
366
- *
367
- * const options = {
368
- * hostname: 'encrypted.google.com',
369
- * port: 443,
370
- * path: '/',
371
- * method: 'GET',
372
- * };
373
- *
374
- * const req = https.request(options, (res) => {
375
- * console.log('statusCode:', res.statusCode);
376
- * console.log('headers:', res.headers);
377
- *
378
- * res.on('data', (d) => {
379
- * process.stdout.write(d);
380
- * });
381
- * });
382
- *
383
- * req.on('error', (e) => {
384
- * console.error(e);
385
- * });
386
- * req.end();
387
- * ```
388
- *
389
- * Example using options from `tls.connect()`:
390
- *
391
- * ```js
392
- * const options = {
393
- * hostname: 'encrypted.google.com',
394
- * port: 443,
395
- * path: '/',
396
- * method: 'GET',
397
- * key: fs.readFileSync('test/fixtures/keys/agent2-key.pem'),
398
- * cert: fs.readFileSync('test/fixtures/keys/agent2-cert.pem'),
399
- * };
400
- * options.agent = new https.Agent(options);
401
- *
402
- * const req = https.request(options, (res) => {
403
- * // ...
404
- * });
405
- * ```
406
- *
407
- * Alternatively, opt out of connection pooling by not using an `Agent`.
408
- *
409
- * ```js
410
- * const options = {
411
- * hostname: 'encrypted.google.com',
412
- * port: 443,
413
- * path: '/',
414
- * method: 'GET',
415
- * key: fs.readFileSync('test/fixtures/keys/agent2-key.pem'),
416
- * cert: fs.readFileSync('test/fixtures/keys/agent2-cert.pem'),
417
- * agent: false,
418
- * };
419
- *
420
- * const req = https.request(options, (res) => {
421
- * // ...
422
- * });
423
- * ```
424
- *
425
- * Example using a `URL` as `options`:
426
- *
427
- * ```js
428
- * const options = new URL('https://abc:xyz@example.com');
429
- *
430
- * const req = https.request(options, (res) => {
431
- * // ...
432
- * });
433
- * ```
434
- *
435
- * Example pinning on certificate fingerprint, or the public key (similar to`pin-sha256`):
436
- *
437
- * ```js
438
- * import tls from 'node:tls';
439
- * import https from 'node:https';
440
- * import crypto from 'node:crypto';
441
- *
442
- * function sha256(s) {
443
- * return crypto.createHash('sha256').update(s).digest('base64');
444
- * }
445
- * const options = {
446
- * hostname: 'github.com',
447
- * port: 443,
448
- * path: '/',
449
- * method: 'GET',
450
- * checkServerIdentity: function(host, cert) {
451
- * // Make sure the certificate is issued to the host we are connected to
452
- * const err = tls.checkServerIdentity(host, cert);
453
- * if (err) {
454
- * return err;
455
- * }
456
- *
457
- * // Pin the public key, similar to HPKP pin-sha256 pinning
458
- * const pubkey256 = 'pL1+qb9HTMRZJmuC/bB/ZI9d302BYrrqiVuRyW+DGrU=';
459
- * if (sha256(cert.pubkey) !== pubkey256) {
460
- * const msg = 'Certificate verification error: ' +
461
- * `The public key of '${cert.subject.CN}' ` +
462
- * 'does not match our pinned fingerprint';
463
- * return new Error(msg);
464
- * }
465
- *
466
- * // Pin the exact certificate, rather than the pub key
467
- * const cert256 = '25:FE:39:32:D9:63:8C:8A:FC:A1:9A:29:87:' +
468
- * 'D8:3E:4C:1D:98:DB:71:E4:1A:48:03:98:EA:22:6A:BD:8B:93:16';
469
- * if (cert.fingerprint256 !== cert256) {
470
- * const msg = 'Certificate verification error: ' +
471
- * `The certificate of '${cert.subject.CN}' ` +
472
- * 'does not match our pinned fingerprint';
473
- * return new Error(msg);
474
- * }
475
- *
476
- * // This loop is informational only.
477
- * // Print the certificate and public key fingerprints of all certs in the
478
- * // chain. Its common to pin the public key of the issuer on the public
479
- * // internet, while pinning the public key of the service in sensitive
480
- * // environments.
481
- * do {
482
- * console.log('Subject Common Name:', cert.subject.CN);
483
- * console.log(' Certificate SHA256 fingerprint:', cert.fingerprint256);
484
- *
485
- * hash = crypto.createHash('sha256');
486
- * console.log(' Public key ping-sha256:', sha256(cert.pubkey));
487
- *
488
- * lastprint256 = cert.fingerprint256;
489
- * cert = cert.issuerCertificate;
490
- * } while (cert.fingerprint256 !== lastprint256);
491
- *
492
- * },
493
- * };
494
- *
495
- * options.agent = new https.Agent(options);
496
- * const req = https.request(options, (res) => {
497
- * console.log('All OK. Server matched our pinned cert or public key');
498
- * console.log('statusCode:', res.statusCode);
499
- * // Print the HPKP values
500
- * console.log('headers:', res.headers['public-key-pins']);
501
- *
502
- * res.on('data', (d) => {});
503
- * });
504
- *
505
- * req.on('error', (e) => {
506
- * console.error(e.message);
507
- * });
508
- * req.end();
509
- * ```
510
- *
511
- * Outputs for example:
512
- *
513
- * ```text
514
- * Subject Common Name: github.com
515
- * Certificate SHA256 fingerprint: 25:FE:39:32:D9:63:8C:8A:FC:A1:9A:29:87:D8:3E:4C:1D:98:DB:71:E4:1A:48:03:98:EA:22:6A:BD:8B:93:16
516
- * Public key ping-sha256: pL1+qb9HTMRZJmuC/bB/ZI9d302BYrrqiVuRyW+DGrU=
517
- * Subject Common Name: DigiCert SHA2 Extended Validation Server CA
518
- * Certificate SHA256 fingerprint: 40:3E:06:2A:26:53:05:91:13:28:5B:AF:80:A0:D4:AE:42:2C:84:8C:9F:78:FA:D0:1F:C9:4B:C5:B8:7F:EF:1A
519
- * Public key ping-sha256: RRM1dGqnDFsCJXBTHky16vi1obOlCgFFn/yOhI/y+ho=
520
- * Subject Common Name: DigiCert High Assurance EV Root CA
521
- * Certificate SHA256 fingerprint: 74:31:E5:F4:C3:C1:CE:46:90:77:4F:0B:61:E0:54:40:88:3B:A9:A0:1E:D0:0B:A6:AB:D7:80:6E:D3:B1:18:CF
522
- * Public key ping-sha256: WoiWRyIOVNa9ihaBciRSC7XHjliYS9VwUGOIud4PB18=
523
- * All OK. Server matched our pinned cert or public key
524
- * statusCode: 200
525
- * headers: max-age=0; pin-sha256="WoiWRyIOVNa9ihaBciRSC7XHjliYS9VwUGOIud4PB18="; pin-sha256="RRM1dGqnDFsCJXBTHky16vi1obOlCgFFn/yOhI/y+ho=";
526
- * pin-sha256="k2v657xBsOVe1PQRwOsHsw3bsGT2VzIqz5K+59sNQws="; pin-sha256="K87oWBWM9UZfyddvDfoxL+8lpNyoUB2ptGtn0fv6G2Q="; pin-sha256="IQBnNBEiFuhj+8x6X8XLgh01V9Ic5/V3IRQLNFFc7v4=";
527
- * pin-sha256="iie1VXtL7HzAMF+/PVPR9xzT80kQxdZeJ+zduCB3uj0="; pin-sha256="LvRiGEjRqfzurezaWuj8Wie2gyHMrW5Q06LspMnox7A="; includeSubDomains
528
- * ```
529
- * @since v0.3.6
530
- * @param options Accepts all `options` from `request`, with some differences in default values:
531
- */
532
- function request(
533
- options: RequestOptions | string | URL,
534
- callback?: (res: http.IncomingMessage) => void,
535
- ): http.ClientRequest;
536
- function request(
537
- url: string | URL,
538
- options: RequestOptions,
539
- callback?: (res: http.IncomingMessage) => void,
540
- ): http.ClientRequest;
541
- /**
542
- * Like `http.get()` but for HTTPS.
543
- *
544
- * `options` can be an object, a string, or a `URL` object. If `options` is a
545
- * string, it is automatically parsed with `new URL()`. If it is a `URL` object, it will be automatically converted to an ordinary `options` object.
546
- *
547
- * ```js
548
- * import https from 'node:https';
549
- *
550
- * https.get('https://encrypted.google.com/', (res) => {
551
- * console.log('statusCode:', res.statusCode);
552
- * console.log('headers:', res.headers);
553
- *
554
- * res.on('data', (d) => {
555
- * process.stdout.write(d);
556
- * });
557
- *
558
- * }).on('error', (e) => {
559
- * console.error(e);
560
- * });
561
- * ```
562
- * @since v0.3.6
563
- * @param options Accepts the same `options` as {@link request}, with the `method` always set to `GET`.
564
- */
565
- function get(
566
- options: RequestOptions | string | URL,
567
- callback?: (res: http.IncomingMessage) => void,
568
- ): http.ClientRequest;
569
- function get(
570
- url: string | URL,
571
- options: RequestOptions,
572
- callback?: (res: http.IncomingMessage) => void,
573
- ): http.ClientRequest;
574
- let globalAgent: Agent;
575
- }
576
- declare module "node:https" {
577
- export * from "https";
578
- }
@@ -1,93 +0,0 @@
1
- /**
2
- * License for programmatically and manually incorporated
3
- * documentation aka. `JSDoc` from https://github.com/nodejs/node/tree/master/doc
4
- *
5
- * Copyright Node.js contributors. All rights reserved.
6
- * Permission is hereby granted, free of charge, to any person obtaining a copy
7
- * of this software and associated documentation files (the "Software"), to
8
- * deal in the Software without restriction, including without limitation the
9
- * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10
- * sell copies of the Software, and to permit persons to whom the Software is
11
- * furnished to do so, subject to the following conditions:
12
- *
13
- * The above copyright notice and this permission notice shall be included in
14
- * all copies or substantial portions of the Software.
15
- *
16
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
22
- * IN THE SOFTWARE.
23
- */
24
-
25
- // NOTE: These definitions support Node.js and TypeScript 5.7+.
26
-
27
- // Reference required TypeScript libs:
28
- /// <reference lib="es2020" />
29
-
30
- // TypeScript backwards-compatibility definitions:
31
- /// <reference path="compatibility/index.d.ts" />
32
-
33
- // Definitions specific to TypeScript 5.7+:
34
- /// <reference path="globals.typedarray.d.ts" />
35
- /// <reference path="buffer.buffer.d.ts" />
36
-
37
- // Definitions for Node.js modules that are not specific to any version of TypeScript:
38
- /// <reference path="globals.d.ts" />
39
- /// <reference path="web-globals/abortcontroller.d.ts" />
40
- /// <reference path="web-globals/domexception.d.ts" />
41
- /// <reference path="web-globals/events.d.ts" />
42
- /// <reference path="web-globals/fetch.d.ts" />
43
- /// <reference path="assert.d.ts" />
44
- /// <reference path="assert/strict.d.ts" />
45
- /// <reference path="async_hooks.d.ts" />
46
- /// <reference path="buffer.d.ts" />
47
- /// <reference path="child_process.d.ts" />
48
- /// <reference path="cluster.d.ts" />
49
- /// <reference path="console.d.ts" />
50
- /// <reference path="constants.d.ts" />
51
- /// <reference path="crypto.d.ts" />
52
- /// <reference path="dgram.d.ts" />
53
- /// <reference path="diagnostics_channel.d.ts" />
54
- /// <reference path="dns.d.ts" />
55
- /// <reference path="dns/promises.d.ts" />
56
- /// <reference path="domain.d.ts" />
57
- /// <reference path="events.d.ts" />
58
- /// <reference path="fs.d.ts" />
59
- /// <reference path="fs/promises.d.ts" />
60
- /// <reference path="http.d.ts" />
61
- /// <reference path="http2.d.ts" />
62
- /// <reference path="https.d.ts" />
63
- /// <reference path="inspector.generated.d.ts" />
64
- /// <reference path="module.d.ts" />
65
- /// <reference path="net.d.ts" />
66
- /// <reference path="os.d.ts" />
67
- /// <reference path="path.d.ts" />
68
- /// <reference path="perf_hooks.d.ts" />
69
- /// <reference path="process.d.ts" />
70
- /// <reference path="punycode.d.ts" />
71
- /// <reference path="querystring.d.ts" />
72
- /// <reference path="readline.d.ts" />
73
- /// <reference path="readline/promises.d.ts" />
74
- /// <reference path="repl.d.ts" />
75
- /// <reference path="sea.d.ts" />
76
- /// <reference path="stream.d.ts" />
77
- /// <reference path="stream/promises.d.ts" />
78
- /// <reference path="stream/consumers.d.ts" />
79
- /// <reference path="stream/web.d.ts" />
80
- /// <reference path="string_decoder.d.ts" />
81
- /// <reference path="test.d.ts" />
82
- /// <reference path="timers.d.ts" />
83
- /// <reference path="timers/promises.d.ts" />
84
- /// <reference path="tls.d.ts" />
85
- /// <reference path="trace_events.d.ts" />
86
- /// <reference path="tty.d.ts" />
87
- /// <reference path="url.d.ts" />
88
- /// <reference path="util.d.ts" />
89
- /// <reference path="v8.d.ts" />
90
- /// <reference path="vm.d.ts" />
91
- /// <reference path="wasi.d.ts" />
92
- /// <reference path="worker_threads.d.ts" />
93
- /// <reference path="zlib.d.ts" />