@types/node 18.19.22 → 18.19.24

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 (57) hide show
  1. node v18.19/README.md +1 -1
  2. node v18.19/crypto.d.ts +1 -1
  3. node v18.19/package.json +3 -10
  4. node v18.19/ts4.8/assert/strict.d.ts +0 -8
  5. node v18.19/ts4.8/assert.d.ts +0 -985
  6. node v18.19/ts4.8/async_hooks.d.ts +0 -522
  7. node v18.19/ts4.8/buffer.d.ts +0 -2353
  8. node v18.19/ts4.8/child_process.d.ts +0 -1544
  9. node v18.19/ts4.8/cluster.d.ts +0 -432
  10. node v18.19/ts4.8/console.d.ts +0 -412
  11. node v18.19/ts4.8/constants.d.ts +0 -19
  12. node v18.19/ts4.8/crypto.d.ts +0 -4457
  13. node v18.19/ts4.8/dgram.d.ts +0 -596
  14. node v18.19/ts4.8/diagnostics_channel.d.ts +0 -546
  15. node v18.19/ts4.8/dns/promises.d.ts +0 -381
  16. node v18.19/ts4.8/dns.d.ts +0 -809
  17. node v18.19/ts4.8/dom-events.d.ts +0 -122
  18. node v18.19/ts4.8/domain.d.ts +0 -170
  19. node v18.19/ts4.8/events.d.ts +0 -819
  20. node v18.19/ts4.8/fs/promises.d.ts +0 -1205
  21. node v18.19/ts4.8/fs.d.ts +0 -4231
  22. node v18.19/ts4.8/globals.d.ts +0 -377
  23. node v18.19/ts4.8/globals.global.d.ts +0 -1
  24. node v18.19/ts4.8/http.d.ts +0 -1803
  25. node v18.19/ts4.8/http2.d.ts +0 -2386
  26. node v18.19/ts4.8/https.d.ts +0 -544
  27. node v18.19/ts4.8/index.d.ts +0 -88
  28. node v18.19/ts4.8/inspector.d.ts +0 -2739
  29. node v18.19/ts4.8/module.d.ts +0 -298
  30. node v18.19/ts4.8/net.d.ts +0 -918
  31. node v18.19/ts4.8/os.d.ts +0 -473
  32. node v18.19/ts4.8/path.d.ts +0 -191
  33. node v18.19/ts4.8/perf_hooks.d.ts +0 -626
  34. node v18.19/ts4.8/process.d.ts +0 -1548
  35. node v18.19/ts4.8/punycode.d.ts +0 -117
  36. node v18.19/ts4.8/querystring.d.ts +0 -141
  37. node v18.19/ts4.8/readline/promises.d.ts +0 -143
  38. node v18.19/ts4.8/readline.d.ts +0 -666
  39. node v18.19/ts4.8/repl.d.ts +0 -430
  40. node v18.19/ts4.8/stream/consumers.d.ts +0 -12
  41. node v18.19/ts4.8/stream/promises.d.ts +0 -83
  42. node v18.19/ts4.8/stream/web.d.ts +0 -352
  43. node v18.19/ts4.8/stream.d.ts +0 -1731
  44. node v18.19/ts4.8/string_decoder.d.ts +0 -67
  45. node v18.19/ts4.8/test.d.ts +0 -1113
  46. node v18.19/ts4.8/timers/promises.d.ts +0 -93
  47. node v18.19/ts4.8/timers.d.ts +0 -126
  48. node v18.19/ts4.8/tls.d.ts +0 -1203
  49. node v18.19/ts4.8/trace_events.d.ts +0 -171
  50. node v18.19/ts4.8/tty.d.ts +0 -206
  51. node v18.19/ts4.8/url.d.ts +0 -954
  52. node v18.19/ts4.8/util.d.ts +0 -2075
  53. node v18.19/ts4.8/v8.d.ts +0 -753
  54. node v18.19/ts4.8/vm.d.ts +0 -667
  55. node v18.19/ts4.8/wasi.d.ts +0 -158
  56. node v18.19/ts4.8/worker_threads.d.ts +0 -692
  57. node v18.19/ts4.8/zlib.d.ts +0 -517
@@ -1,666 +0,0 @@
1
- /**
2
- * The `readline` module provides an interface for reading data from a `Readable` stream (such as `process.stdin`) one line at a time.
3
- *
4
- * To use the promise-based APIs:
5
- *
6
- * ```js
7
- * import * as readline from 'node:readline/promises';
8
- * ```
9
- *
10
- * To use the callback and sync APIs:
11
- *
12
- * ```js
13
- * import * as readline from 'node:readline';
14
- * ```
15
- *
16
- * The following simple example illustrates the basic use of the `readline` module.
17
- *
18
- * ```js
19
- * import * as readline from 'node:readline/promises';
20
- * import { stdin as input, stdout as output } from 'node:process';
21
- *
22
- * const rl = readline.createInterface({ input, output });
23
- *
24
- * const answer = await rl.question('What do you think of Node.js? ');
25
- *
26
- * console.log(`Thank you for your valuable feedback: ${answer}`);
27
- *
28
- * rl.close();
29
- * ```
30
- *
31
- * Once this code is invoked, the Node.js application will not terminate until the`readline.Interface` is closed because the interface waits for data to be
32
- * received on the `input` stream.
33
- * @see [source](https://github.com/nodejs/node/blob/v18.0.0/lib/readline.js)
34
- */
35
- declare module "readline" {
36
- import { Abortable, EventEmitter } from "node:events";
37
- import * as promises from "node:readline/promises";
38
-
39
- export { promises };
40
- export interface Key {
41
- sequence?: string | undefined;
42
- name?: string | undefined;
43
- ctrl?: boolean | undefined;
44
- meta?: boolean | undefined;
45
- shift?: boolean | undefined;
46
- }
47
- /**
48
- * Instances of the `readline.Interface` class are constructed using the`readline.createInterface()` method. Every instance is associated with a
49
- * single `input` `Readable` stream and a single `output` `Writable` stream.
50
- * The `output` stream is used to print prompts for user input that arrives on,
51
- * and is read from, the `input` stream.
52
- * @since v0.1.104
53
- */
54
- export class Interface extends EventEmitter {
55
- readonly terminal: boolean;
56
- /**
57
- * The current input data being processed by node.
58
- *
59
- * This can be used when collecting input from a TTY stream to retrieve the
60
- * current value that has been processed thus far, prior to the `line` event
61
- * being emitted. Once the `line` event has been emitted, this property will
62
- * be an empty string.
63
- *
64
- * Be aware that modifying the value during the instance runtime may have
65
- * unintended consequences if `rl.cursor` is not also controlled.
66
- *
67
- * **If not using a TTY stream for input, use the `'line'` event.**
68
- *
69
- * One possible use case would be as follows:
70
- *
71
- * ```js
72
- * const values = ['lorem ipsum', 'dolor sit amet'];
73
- * const rl = readline.createInterface(process.stdin);
74
- * const showResults = debounce(() => {
75
- * console.log(
76
- * '\n',
77
- * values.filter((val) => val.startsWith(rl.line)).join(' ')
78
- * );
79
- * }, 300);
80
- * process.stdin.on('keypress', (c, k) => {
81
- * showResults();
82
- * });
83
- * ```
84
- * @since v0.1.98
85
- */
86
- readonly line: string;
87
- /**
88
- * The cursor position relative to `rl.line`.
89
- *
90
- * This will track where the current cursor lands in the input string, when
91
- * reading input from a TTY stream. The position of cursor determines the
92
- * portion of the input string that will be modified as input is processed,
93
- * as well as the column where the terminal caret will be rendered.
94
- * @since v0.1.98
95
- */
96
- readonly cursor: number;
97
- /**
98
- * NOTE: According to the documentation:
99
- *
100
- * > Instances of the `readline.Interface` class are constructed using the
101
- * > `readline.createInterface()` method.
102
- *
103
- * @see https://nodejs.org/dist/latest-v10.x/docs/api/readline.html#readline_class_interface
104
- */
105
- protected constructor(
106
- input: NodeJS.ReadableStream,
107
- output?: NodeJS.WritableStream,
108
- completer?: Completer | AsyncCompleter,
109
- terminal?: boolean,
110
- );
111
- /**
112
- * NOTE: According to the documentation:
113
- *
114
- * > Instances of the `readline.Interface` class are constructed using the
115
- * > `readline.createInterface()` method.
116
- *
117
- * @see https://nodejs.org/dist/latest-v10.x/docs/api/readline.html#readline_class_interface
118
- */
119
- protected constructor(options: ReadLineOptions);
120
- /**
121
- * The `rl.getPrompt()` method returns the current prompt used by `rl.prompt()`.
122
- * @since v15.3.0
123
- * @return the current prompt string
124
- */
125
- getPrompt(): string;
126
- /**
127
- * The `rl.setPrompt()` method sets the prompt that will be written to `output`whenever `rl.prompt()` is called.
128
- * @since v0.1.98
129
- */
130
- setPrompt(prompt: string): void;
131
- /**
132
- * The `rl.prompt()` method writes the `readline.Interface` instances configured`prompt` to a new line in `output` in order to provide a user with a new
133
- * location at which to provide input.
134
- *
135
- * When called, `rl.prompt()` will resume the `input` stream if it has been
136
- * paused.
137
- *
138
- * If the `readline.Interface` was created with `output` set to `null` or`undefined` the prompt is not written.
139
- * @since v0.1.98
140
- * @param preserveCursor If `true`, prevents the cursor placement from being reset to `0`.
141
- */
142
- prompt(preserveCursor?: boolean): void;
143
- /**
144
- * The `rl.question()` method displays the `query` by writing it to the `output`,
145
- * waits for user input to be provided on `input`, then invokes the `callback`function passing the provided input as the first argument.
146
- *
147
- * When called, `rl.question()` will resume the `input` stream if it has been
148
- * paused.
149
- *
150
- * If the `readline.Interface` was created with `output` set to `null` or`undefined` the `query` is not written.
151
- *
152
- * The `callback` function passed to `rl.question()` does not follow the typical
153
- * pattern of accepting an `Error` object or `null` as the first argument.
154
- * The `callback` is called with the provided answer as the only argument.
155
- *
156
- * Example usage:
157
- *
158
- * ```js
159
- * rl.question('What is your favorite food? ', (answer) => {
160
- * console.log(`Oh, so your favorite food is ${answer}`);
161
- * });
162
- * ```
163
- *
164
- * Using an `AbortController` to cancel a question.
165
- *
166
- * ```js
167
- * const ac = new AbortController();
168
- * const signal = ac.signal;
169
- *
170
- * rl.question('What is your favorite food? ', { signal }, (answer) => {
171
- * console.log(`Oh, so your favorite food is ${answer}`);
172
- * });
173
- *
174
- * signal.addEventListener('abort', () => {
175
- * console.log('The food question timed out');
176
- * }, { once: true });
177
- *
178
- * setTimeout(() => ac.abort(), 10000);
179
- * ```
180
- *
181
- * If this method is invoked as it's util.promisify()ed version, it returns a
182
- * Promise that fulfills with the answer. If the question is canceled using
183
- * an `AbortController` it will reject with an `AbortError`.
184
- *
185
- * ```js
186
- * const util = require('util');
187
- * const question = util.promisify(rl.question).bind(rl);
188
- *
189
- * async function questionExample() {
190
- * try {
191
- * const answer = await question('What is you favorite food? ');
192
- * console.log(`Oh, so your favorite food is ${answer}`);
193
- * } catch (err) {
194
- * console.error('Question rejected', err);
195
- * }
196
- * }
197
- * questionExample();
198
- * ```
199
- * @since v0.3.3
200
- * @param query A statement or query to write to `output`, prepended to the prompt.
201
- * @param callback A callback function that is invoked with the user's input in response to the `query`.
202
- */
203
- question(query: string, callback: (answer: string) => void): void;
204
- question(query: string, options: Abortable, callback: (answer: string) => void): void;
205
- /**
206
- * The `rl.pause()` method pauses the `input` stream, allowing it to be resumed
207
- * later if necessary.
208
- *
209
- * Calling `rl.pause()` does not immediately pause other events (including`'line'`) from being emitted by the `readline.Interface` instance.
210
- * @since v0.3.4
211
- */
212
- pause(): this;
213
- /**
214
- * The `rl.resume()` method resumes the `input` stream if it has been paused.
215
- * @since v0.3.4
216
- */
217
- resume(): this;
218
- /**
219
- * The `rl.close()` method closes the `readline.Interface` instance and
220
- * relinquishes control over the `input` and `output` streams. When called,
221
- * the `'close'` event will be emitted.
222
- *
223
- * Calling `rl.close()` does not immediately stop other events (including `'line'`)
224
- * from being emitted by the `readline.Interface` instance.
225
- * @since v0.1.98
226
- */
227
- close(): void;
228
- /**
229
- * The `rl.write()` method will write either `data` or a key sequence identified
230
- * by `key` to the `output`. The `key` argument is supported only if `output` is
231
- * a `TTY` text terminal. See `TTY keybindings` for a list of key
232
- * combinations.
233
- *
234
- * If `key` is specified, `data` is ignored.
235
- *
236
- * When called, `rl.write()` will resume the `input` stream if it has been
237
- * paused.
238
- *
239
- * If the `readline.Interface` was created with `output` set to `null` or`undefined` the `data` and `key` are not written.
240
- *
241
- * ```js
242
- * rl.write('Delete this!');
243
- * // Simulate Ctrl+U to delete the line written previously
244
- * rl.write(null, { ctrl: true, name: 'u' });
245
- * ```
246
- *
247
- * The `rl.write()` method will write the data to the `readline` `Interface`'s`input`_as if it were provided by the user_.
248
- * @since v0.1.98
249
- */
250
- write(data: string | Buffer, key?: Key): void;
251
- write(data: undefined | null | string | Buffer, key: Key): void;
252
- /**
253
- * Returns the real position of the cursor in relation to the input
254
- * prompt + string. Long input (wrapping) strings, as well as multiple
255
- * line prompts are included in the calculations.
256
- * @since v13.5.0, v12.16.0
257
- */
258
- getCursorPos(): CursorPos;
259
- /**
260
- * events.EventEmitter
261
- * 1. close
262
- * 2. line
263
- * 3. pause
264
- * 4. resume
265
- * 5. SIGCONT
266
- * 6. SIGINT
267
- * 7. SIGTSTP
268
- * 8. history
269
- */
270
- addListener(event: string, listener: (...args: any[]) => void): this;
271
- addListener(event: "close", listener: () => void): this;
272
- addListener(event: "line", listener: (input: string) => void): this;
273
- addListener(event: "pause", listener: () => void): this;
274
- addListener(event: "resume", listener: () => void): this;
275
- addListener(event: "SIGCONT", listener: () => void): this;
276
- addListener(event: "SIGINT", listener: () => void): this;
277
- addListener(event: "SIGTSTP", listener: () => void): this;
278
- addListener(event: "history", listener: (history: string[]) => void): this;
279
- emit(event: string | symbol, ...args: any[]): boolean;
280
- emit(event: "close"): boolean;
281
- emit(event: "line", input: string): boolean;
282
- emit(event: "pause"): boolean;
283
- emit(event: "resume"): boolean;
284
- emit(event: "SIGCONT"): boolean;
285
- emit(event: "SIGINT"): boolean;
286
- emit(event: "SIGTSTP"): boolean;
287
- emit(event: "history", history: string[]): boolean;
288
- on(event: string, listener: (...args: any[]) => void): this;
289
- on(event: "close", listener: () => void): this;
290
- on(event: "line", listener: (input: string) => void): this;
291
- on(event: "pause", listener: () => void): this;
292
- on(event: "resume", listener: () => void): this;
293
- on(event: "SIGCONT", listener: () => void): this;
294
- on(event: "SIGINT", listener: () => void): this;
295
- on(event: "SIGTSTP", listener: () => void): this;
296
- on(event: "history", listener: (history: string[]) => void): this;
297
- once(event: string, listener: (...args: any[]) => void): this;
298
- once(event: "close", listener: () => void): this;
299
- once(event: "line", listener: (input: string) => void): this;
300
- once(event: "pause", listener: () => void): this;
301
- once(event: "resume", listener: () => void): this;
302
- once(event: "SIGCONT", listener: () => void): this;
303
- once(event: "SIGINT", listener: () => void): this;
304
- once(event: "SIGTSTP", listener: () => void): this;
305
- once(event: "history", listener: (history: string[]) => void): this;
306
- prependListener(event: string, listener: (...args: any[]) => void): this;
307
- prependListener(event: "close", listener: () => void): this;
308
- prependListener(event: "line", listener: (input: string) => void): this;
309
- prependListener(event: "pause", listener: () => void): this;
310
- prependListener(event: "resume", listener: () => void): this;
311
- prependListener(event: "SIGCONT", listener: () => void): this;
312
- prependListener(event: "SIGINT", listener: () => void): this;
313
- prependListener(event: "SIGTSTP", listener: () => void): this;
314
- prependListener(event: "history", listener: (history: string[]) => void): this;
315
- prependOnceListener(event: string, listener: (...args: any[]) => void): this;
316
- prependOnceListener(event: "close", listener: () => void): this;
317
- prependOnceListener(event: "line", listener: (input: string) => void): this;
318
- prependOnceListener(event: "pause", listener: () => void): this;
319
- prependOnceListener(event: "resume", listener: () => void): this;
320
- prependOnceListener(event: "SIGCONT", listener: () => void): this;
321
- prependOnceListener(event: "SIGINT", listener: () => void): this;
322
- prependOnceListener(event: "SIGTSTP", listener: () => void): this;
323
- prependOnceListener(event: "history", listener: (history: string[]) => void): this;
324
- [Symbol.asyncIterator](): AsyncIterableIterator<string>;
325
- }
326
- export type ReadLine = Interface; // type forwarded for backwards compatibility
327
- export type Completer = (line: string) => CompleterResult;
328
- export type AsyncCompleter = (
329
- line: string,
330
- callback: (err?: null | Error, result?: CompleterResult) => void,
331
- ) => void;
332
- export type CompleterResult = [string[], string];
333
- export interface ReadLineOptions {
334
- input: NodeJS.ReadableStream;
335
- output?: NodeJS.WritableStream | undefined;
336
- completer?: Completer | AsyncCompleter | undefined;
337
- terminal?: boolean | undefined;
338
- /**
339
- * Initial list of history lines. This option makes sense
340
- * only if `terminal` is set to `true` by the user or by an internal `output`
341
- * check, otherwise the history caching mechanism is not initialized at all.
342
- * @default []
343
- */
344
- history?: string[] | undefined;
345
- historySize?: number | undefined;
346
- prompt?: string | undefined;
347
- crlfDelay?: number | undefined;
348
- /**
349
- * If `true`, when a new input line added
350
- * to the history list duplicates an older one, this removes the older line
351
- * from the list.
352
- * @default false
353
- */
354
- removeHistoryDuplicates?: boolean | undefined;
355
- escapeCodeTimeout?: number | undefined;
356
- tabSize?: number | undefined;
357
- }
358
- /**
359
- * The `readline.createInterface()` method creates a new `readline.Interface`instance.
360
- *
361
- * ```js
362
- * const readline = require('readline');
363
- * const rl = readline.createInterface({
364
- * input: process.stdin,
365
- * output: process.stdout
366
- * });
367
- * ```
368
- *
369
- * Once the `readline.Interface` instance is created, the most common case is to
370
- * listen for the `'line'` event:
371
- *
372
- * ```js
373
- * rl.on('line', (line) => {
374
- * console.log(`Received: ${line}`);
375
- * });
376
- * ```
377
- *
378
- * If `terminal` is `true` for this instance then the `output` stream will get
379
- * the best compatibility if it defines an `output.columns` property and emits
380
- * a `'resize'` event on the `output` if or when the columns ever change
381
- * (`process.stdout` does this automatically when it is a TTY).
382
- *
383
- * When creating a `readline.Interface` using `stdin` as input, the program
384
- * will not terminate until it receives `EOF` (Ctrl+D on
385
- * Linux/macOS, Ctrl+Z followed by Return on
386
- * Windows).
387
- * If you want your application to exit without waiting for user input, you can `unref()` the standard input stream:
388
- *
389
- * ```js
390
- * process.stdin.unref();
391
- * ```
392
- * @since v0.1.98
393
- */
394
- export function createInterface(
395
- input: NodeJS.ReadableStream,
396
- output?: NodeJS.WritableStream,
397
- completer?: Completer | AsyncCompleter,
398
- terminal?: boolean,
399
- ): Interface;
400
- export function createInterface(options: ReadLineOptions): Interface;
401
- /**
402
- * The `readline.emitKeypressEvents()` method causes the given `Readable` stream to begin emitting `'keypress'` events corresponding to received input.
403
- *
404
- * Optionally, `interface` specifies a `readline.Interface` instance for which
405
- * autocompletion is disabled when copy-pasted input is detected.
406
- *
407
- * If the `stream` is a `TTY`, then it must be in raw mode.
408
- *
409
- * This is automatically called by any readline instance on its `input` if the`input` is a terminal. Closing the `readline` instance does not stop
410
- * the `input` from emitting `'keypress'` events.
411
- *
412
- * ```js
413
- * readline.emitKeypressEvents(process.stdin);
414
- * if (process.stdin.isTTY)
415
- * process.stdin.setRawMode(true);
416
- * ```
417
- *
418
- * ## Example: Tiny CLI
419
- *
420
- * The following example illustrates the use of `readline.Interface` class to
421
- * implement a small command-line interface:
422
- *
423
- * ```js
424
- * const readline = require('readline');
425
- * const rl = readline.createInterface({
426
- * input: process.stdin,
427
- * output: process.stdout,
428
- * prompt: 'OHAI> '
429
- * });
430
- *
431
- * rl.prompt();
432
- *
433
- * rl.on('line', (line) => {
434
- * switch (line.trim()) {
435
- * case 'hello':
436
- * console.log('world!');
437
- * break;
438
- * default:
439
- * console.log(`Say what? I might have heard '${line.trim()}'`);
440
- * break;
441
- * }
442
- * rl.prompt();
443
- * }).on('close', () => {
444
- * console.log('Have a great day!');
445
- * process.exit(0);
446
- * });
447
- * ```
448
- *
449
- * ## Example: Read file stream line-by-Line
450
- *
451
- * A common use case for `readline` is to consume an input file one line at a
452
- * time. The easiest way to do so is leveraging the `fs.ReadStream` API as
453
- * well as a `for await...of` loop:
454
- *
455
- * ```js
456
- * const fs = require('fs');
457
- * const readline = require('readline');
458
- *
459
- * async function processLineByLine() {
460
- * const fileStream = fs.createReadStream('input.txt');
461
- *
462
- * const rl = readline.createInterface({
463
- * input: fileStream,
464
- * crlfDelay: Infinity
465
- * });
466
- * // Note: we use the crlfDelay option to recognize all instances of CR LF
467
- * // ('\r\n') in input.txt as a single line break.
468
- *
469
- * for await (const line of rl) {
470
- * // Each line in input.txt will be successively available here as `line`.
471
- * console.log(`Line from file: ${line}`);
472
- * }
473
- * }
474
- *
475
- * processLineByLine();
476
- * ```
477
- *
478
- * Alternatively, one could use the `'line'` event:
479
- *
480
- * ```js
481
- * const fs = require('fs');
482
- * const readline = require('readline');
483
- *
484
- * const rl = readline.createInterface({
485
- * input: fs.createReadStream('sample.txt'),
486
- * crlfDelay: Infinity
487
- * });
488
- *
489
- * rl.on('line', (line) => {
490
- * console.log(`Line from file: ${line}`);
491
- * });
492
- * ```
493
- *
494
- * Currently, `for await...of` loop can be a bit slower. If `async` / `await`flow and speed are both essential, a mixed approach can be applied:
495
- *
496
- * ```js
497
- * const { once } = require('events');
498
- * const { createReadStream } = require('fs');
499
- * const { createInterface } = require('readline');
500
- *
501
- * (async function processLineByLine() {
502
- * try {
503
- * const rl = createInterface({
504
- * input: createReadStream('big-file.txt'),
505
- * crlfDelay: Infinity
506
- * });
507
- *
508
- * rl.on('line', (line) => {
509
- * // Process the line.
510
- * });
511
- *
512
- * await once(rl, 'close');
513
- *
514
- * console.log('File processed.');
515
- * } catch (err) {
516
- * console.error(err);
517
- * }
518
- * })();
519
- * ```
520
- * @since v0.7.7
521
- */
522
- export function emitKeypressEvents(stream: NodeJS.ReadableStream, readlineInterface?: Interface): void;
523
- export type Direction = -1 | 0 | 1;
524
- export interface CursorPos {
525
- rows: number;
526
- cols: number;
527
- }
528
- /**
529
- * The `readline.clearLine()` method clears current line of given `TTY` stream
530
- * in a specified direction identified by `dir`.
531
- * @since v0.7.7
532
- * @param callback Invoked once the operation completes.
533
- * @return `false` if `stream` wishes for the calling code to wait for the `'drain'` event to be emitted before continuing to write additional data; otherwise `true`.
534
- */
535
- export function clearLine(stream: NodeJS.WritableStream, dir: Direction, callback?: () => void): boolean;
536
- /**
537
- * The `readline.clearScreenDown()` method clears the given `TTY` stream from
538
- * the current position of the cursor down.
539
- * @since v0.7.7
540
- * @param callback Invoked once the operation completes.
541
- * @return `false` if `stream` wishes for the calling code to wait for the `'drain'` event to be emitted before continuing to write additional data; otherwise `true`.
542
- */
543
- export function clearScreenDown(stream: NodeJS.WritableStream, callback?: () => void): boolean;
544
- /**
545
- * The `readline.cursorTo()` method moves cursor to the specified position in a
546
- * given `TTY` `stream`.
547
- * @since v0.7.7
548
- * @param callback Invoked once the operation completes.
549
- * @return `false` if `stream` wishes for the calling code to wait for the `'drain'` event to be emitted before continuing to write additional data; otherwise `true`.
550
- */
551
- export function cursorTo(stream: NodeJS.WritableStream, x: number, y?: number, callback?: () => void): boolean;
552
- /**
553
- * The `readline.moveCursor()` method moves the cursor _relative_ to its current
554
- * position in a given `TTY` `stream`.
555
- *
556
- * ## Example: Tiny CLI
557
- *
558
- * The following example illustrates the use of `readline.Interface` class to
559
- * implement a small command-line interface:
560
- *
561
- * ```js
562
- * const readline = require('readline');
563
- * const rl = readline.createInterface({
564
- * input: process.stdin,
565
- * output: process.stdout,
566
- * prompt: 'OHAI> '
567
- * });
568
- *
569
- * rl.prompt();
570
- *
571
- * rl.on('line', (line) => {
572
- * switch (line.trim()) {
573
- * case 'hello':
574
- * console.log('world!');
575
- * break;
576
- * default:
577
- * console.log(`Say what? I might have heard '${line.trim()}'`);
578
- * break;
579
- * }
580
- * rl.prompt();
581
- * }).on('close', () => {
582
- * console.log('Have a great day!');
583
- * process.exit(0);
584
- * });
585
- * ```
586
- *
587
- * ## Example: Read file stream line-by-Line
588
- *
589
- * A common use case for `readline` is to consume an input file one line at a
590
- * time. The easiest way to do so is leveraging the `fs.ReadStream` API as
591
- * well as a `for await...of` loop:
592
- *
593
- * ```js
594
- * const fs = require('fs');
595
- * const readline = require('readline');
596
- *
597
- * async function processLineByLine() {
598
- * const fileStream = fs.createReadStream('input.txt');
599
- *
600
- * const rl = readline.createInterface({
601
- * input: fileStream,
602
- * crlfDelay: Infinity
603
- * });
604
- * // Note: we use the crlfDelay option to recognize all instances of CR LF
605
- * // ('\r\n') in input.txt as a single line break.
606
- *
607
- * for await (const line of rl) {
608
- * // Each line in input.txt will be successively available here as `line`.
609
- * console.log(`Line from file: ${line}`);
610
- * }
611
- * }
612
- *
613
- * processLineByLine();
614
- * ```
615
- *
616
- * Alternatively, one could use the `'line'` event:
617
- *
618
- * ```js
619
- * const fs = require('fs');
620
- * const readline = require('readline');
621
- *
622
- * const rl = readline.createInterface({
623
- * input: fs.createReadStream('sample.txt'),
624
- * crlfDelay: Infinity
625
- * });
626
- *
627
- * rl.on('line', (line) => {
628
- * console.log(`Line from file: ${line}`);
629
- * });
630
- * ```
631
- *
632
- * Currently, `for await...of` loop can be a bit slower. If `async` / `await`flow and speed are both essential, a mixed approach can be applied:
633
- *
634
- * ```js
635
- * const { once } = require('events');
636
- * const { createReadStream } = require('fs');
637
- * const { createInterface } = require('readline');
638
- *
639
- * (async function processLineByLine() {
640
- * try {
641
- * const rl = createInterface({
642
- * input: createReadStream('big-file.txt'),
643
- * crlfDelay: Infinity
644
- * });
645
- *
646
- * rl.on('line', (line) => {
647
- * // Process the line.
648
- * });
649
- *
650
- * await once(rl, 'close');
651
- *
652
- * console.log('File processed.');
653
- * } catch (err) {
654
- * console.error(err);
655
- * }
656
- * })();
657
- * ```
658
- * @since v0.7.7
659
- * @param callback Invoked once the operation completes.
660
- * @return `false` if `stream` wishes for the calling code to wait for the `'drain'` event to be emitted before continuing to write additional data; otherwise `true`.
661
- */
662
- export function moveCursor(stream: NodeJS.WritableStream, dx: number, dy: number, callback?: () => void): boolean;
663
- }
664
- declare module "node:readline" {
665
- export * from "readline";
666
- }