/
home
/
techb158
/
balavpn.abdallabala.com
/
node_modules
/
@types
/
node
/
/home/techb158/balavpn.abdallabala.com/node_modules/@types/node
mkdir
upload
Name
Size
Mode
Actions
assert/
-
0777
rm
dns/
-
0777
rm
fs/
-
0777
rm
inspector/
-
0777
rm
path/
-
0777
rm
readline/
-
0777
rm
stream/
-
0777
rm
test/
-
0777
rm
timers/
-
0777
rm
ts5.6/
-
0777
rm
ts5.7/
-
0777
rm
util/
-
0777
rm
web-globals/
-
0777
rm
zlib/
-
0777
rm
assert.d.ts
42891
0666
edit
dl
rm
async_hooks.d.ts
29929
0666
edit
dl
rm
buffer.buffer.d.ts
22604
0666
edit
dl
rm
buffer.d.ts
81152
0666
edit
dl
rm
child_process.d.ts
59930
0666
edit
dl
rm
cluster.d.ts
19527
0666
edit
dl
rm
console.d.ts
4250
0666
edit
dl
rm
constants.d.ts
491
0666
edit
dl
rm
crypto.d.ts
168455
0666
edit
dl
rm
dgram.d.ts
24921
0666
edit
dl
rm
diagnostics_channel.d.ts
34577
0666
edit
dl
rm
dns.d.ts
34348
0666
edit
dl
rm
domain.d.ts
6597
0666
edit
dl
rm
events.d.ts
47375
0666
edit
dl
rm
ffi.d.ts
20013
0666
edit
dl
rm
fs.d.ts
201283
0666
edit
dl
rm
globals.d.ts
5084
0666
edit
dl
rm
globals.typedarray.d.ts
4864
0666
edit
dl
rm
http.d.ts
96833
0666
edit
dl
rm
http2.d.ts
119039
0666
edit
dl
rm
https.d.ts
16812
0666
edit
dl
rm
index.d.ts
5019
0666
edit
dl
rm
inspector.d.ts
12198
0666
edit
dl
rm
inspector.generated.d.ts
228362
0666
edit
dl
rm
LICENSE
1141
0666
edit
dl
rm
module.d.ts
32983
0666
edit
dl
rm
net.d.ts
43748
0666
edit
dl
rm
os.d.ts
19193
0666
edit
dl
rm
package.json
4508
0666
edit
dl
rm
path.d.ts
7639
0666
edit
dl
rm
perf_hooks.d.ts
22973
0666
edit
dl
rm
process.d.ts
112070
0666
edit
dl
rm
punycode.d.ts
3780
0666
edit
dl
rm
querystring.d.ts
6642
0666
edit
dl
rm
quic.d.ts
33850
0666
edit
dl
rm
readline.d.ts
21216
0666
edit
dl
rm
README.md
1582
0666
edit
dl
rm
repl.d.ts
19023
0666
edit
dl
rm
sea.d.ts
2045
0666
edit
dl
rm
sqlite.d.ts
54652
0666
edit
dl
rm
stream.d.ts
90588
0666
edit
dl
rm
string_decoder.d.ts
1318
0666
edit
dl
rm
test.d.ts
111992
0666
edit
dl
rm
timers.d.ts
7351
0666
edit
dl
rm
tls.d.ts
58012
0666
edit
dl
rm
trace_events.d.ts
3842
0666
edit
dl
rm
tty.d.ts
11152
0666
edit
dl
rm
url.d.ts
25457
0666
edit
dl
rm
util.d.ts
65409
0666
edit
dl
rm
v8.d.ts
42920
0666
edit
dl
rm
vm.d.ts
53143
0666
edit
dl
rm
wasi.d.ts
6250
0666
edit
dl
rm
worker_threads.d.ts
29736
0666
edit
dl
rm
zlib.d.ts
22874
0666
edit
dl
rm
Edit:
/home/techb158/balavpn.abdallabala.com/node_modules/@types/node/tty.d.ts
(11152B)
declare module "node:tty" { import * as net from "node:net"; /** * The `tty.isatty()` method returns `true` if the given `fd` is associated with * a TTY and `false` if it is not, including whenever `fd` is not a non-negative * integer. * @since v0.5.8 * @param fd A numeric file descriptor */ function isatty(fd: number): boolean; /** * Represents the readable side of a TTY. In normal circumstances `process.stdin` will be the only `tty.ReadStream` instance in a Node.js * process and there should be no reason to create additional instances. * @since v0.5.8 */ class ReadStream extends net.Socket { constructor(fd: number, options?: net.SocketConstructorOpts); /** * A `boolean` that is `true` if the TTY is currently configured to operate as a * raw device. * * This flag is always `false` when a process starts, even if the terminal is * operating in raw mode. Its value will change with subsequent calls to `setRawMode`. * @since v0.7.7 */ isRaw: boolean; /** * Allows configuration of `tty.ReadStream` so that it operates as a raw device. * * When in raw mode, input is always available character-by-character, not * including modifiers. Additionally, all special processing of characters by the * terminal is disabled, including echoing input * characters. Ctrl+C will no longer cause a `SIGINT` when * in this mode. * @since v0.7.7 * @param mode If `true`, configures the `tty.ReadStream` to operate as a raw device. If `false`, configures the `tty.ReadStream` to operate in its default mode. The `readStream.isRaw` * property will be set to the resulting mode. * @return The read stream instance. */ setRawMode(mode: boolean): this; /** * A `boolean` that is always `true` for `tty.ReadStream` instances. * @since v0.5.8 */ isTTY: boolean; } /** * -1 - to the left from cursor * 0 - the entire line * 1 - to the right from cursor */ type Direction = -1 | 0 | 1; interface WriteStreamEventMap extends net.SocketEventMap { "resize": []; } /** * Represents the writable side of a TTY. In normal circumstances, `process.stdout` and `process.stderr` will be the only`tty.WriteStream` instances created for a Node.js process and there * should be no reason to create additional instances. * @since v0.5.8 */ class WriteStream extends net.Socket { constructor(fd: number); /** * `writeStream.clearLine()` clears the current line of this `WriteStream` in a * direction identified by `dir`. * @since v0.7.7 * @param callback Invoked once the operation completes. * @return `false` if the stream wishes for the calling code to wait for the `'drain'` event to be emitted before continuing to write additional data; otherwise `true`. */ clearLine(dir: Direction, callback?: () => void): boolean; /** * `writeStream.clearScreenDown()` clears this `WriteStream` from the current * cursor down. * @since v0.7.7 * @param callback Invoked once the operation completes. * @return `false` if the stream wishes for the calling code to wait for the `'drain'` event to be emitted before continuing to write additional data; otherwise `true`. */ clearScreenDown(callback?: () => void): boolean; /** * `writeStream.cursorTo()` moves this `WriteStream`'s cursor to the specified * position. * @since v0.7.7 * @param callback Invoked once the operation completes. * @return `false` if the stream wishes for the calling code to wait for the `'drain'` event to be emitted before continuing to write additional data; otherwise `true`. */ cursorTo(x: number, y?: number, callback?: () => void): boolean; cursorTo(x: number, callback: () => void): boolean; /** * `writeStream.moveCursor()` moves this `WriteStream`'s cursor _relative_ to its * current position. * @since v0.7.7 * @param callback Invoked once the operation completes. * @return `false` if the stream wishes for the calling code to wait for the `'drain'` event to be emitted before continuing to write additional data; otherwise `true`. */ moveCursor(dx: number, dy: number, callback?: () => void): boolean; /** * Returns: * * * `1` for 2, * * `4` for 16, * * `8` for 256, * * `24` for 16,777,216 colors supported. * * Use this to determine what colors the terminal supports. Due to the nature of * colors in terminals it is possible to either have false positives or false * negatives. It depends on process information and the environment variables that * may lie about what terminal is used. * It is possible to pass in an `env` object to simulate the usage of a specific * terminal. This can be useful to check how specific environment settings behave. * * To enforce a specific color support, use one of the below environment settings. * * * 2 colors: `FORCE_COLOR = 0` (Disables colors) * * 16 colors: `FORCE_COLOR = 1` * * 256 colors: `FORCE_COLOR = 2` * * 16,777,216 colors: `FORCE_COLOR = 3` * * Disabling color support is also possible by using the `NO_COLOR` and `NODE_DISABLE_COLORS` environment variables. * @since v9.9.0 * @param [env=process.env] An object containing the environment variables to check. This enables simulating the usage of a specific terminal. */ getColorDepth(env?: object): number; /** * Returns `true` if the `writeStream` supports at least as many colors as provided * in `count`. Minimum support is 2 (black and white). * * This has the same false positives and negatives as described in `writeStream.getColorDepth()`. * * ```js * process.stdout.hasColors(); * // Returns true or false depending on if `stdout` supports at least 16 colors. * process.stdout.hasColors(256); * // Returns true or false depending on if `stdout` supports at least 256 colors. * process.stdout.hasColors({ TMUX: '1' }); * // Returns true. * process.stdout.hasColors(2 ** 24, { TMUX: '1' }); * // Returns false (the environment setting pretends to support 2 ** 8 colors). * ``` * @since v11.13.0, v10.16.0 * @param [count=16] The number of colors that are requested (minimum 2). * @param [env=process.env] An object containing the environment variables to check. This enables simulating the usage of a specific terminal. */ hasColors(count?: number): boolean; hasColors(env?: object): boolean; hasColors(count: number, env?: object): boolean; /** * `writeStream.getWindowSize()` returns the size of the TTY * corresponding to this `WriteStream`. The array is of the type `[numColumns, numRows]` where `numColumns` and `numRows` represent the number * of columns and rows in the corresponding TTY. * @since v0.7.7 */ getWindowSize(): [number, number]; /** * A `number` specifying the number of columns the TTY currently has. This property * is updated whenever the `'resize'` event is emitted. * @since v0.7.7 */ columns: number; /** * A `number` specifying the number of rows the TTY currently has. This property * is updated whenever the `'resize'` event is emitted. * @since v0.7.7 */ rows: number; /** * A `boolean` that is always `true`. * @since v0.5.8 */ isTTY: boolean; // #region InternalEventEmitter addListener<E extends keyof WriteStreamEventMap>( eventName: E, listener: (...args: WriteStreamEventMap[E]) => void, ): this; addListener(eventName: string | symbol, listener: (...args: any[]) => void): this; emit<E extends keyof WriteStreamEventMap>(eventName: E, ...args: WriteStreamEventMap[E]): boolean; emit(eventName: string | symbol, ...args: any[]): boolean; listenerCount<E extends keyof WriteStreamEventMap>( eventName: E, listener?: (...args: WriteStreamEventMap[E]) => void, ): number; listenerCount(eventName: string | symbol, listener?: (...args: any[]) => void): number; listeners<E extends keyof WriteStreamEventMap>(eventName: E): ((...args: WriteStreamEventMap[E]) => void)[]; listeners(eventName: string | symbol): ((...args: any[]) => void)[]; off<E extends keyof WriteStreamEventMap>( eventName: E, listener: (...args: WriteStreamEventMap[E]) => void, ): this; off(eventName: string | symbol, listener: (...args: any[]) => void): this; on<E extends keyof WriteStreamEventMap>( eventName: E, listener: (...args: WriteStreamEventMap[E]) => void, ): this; on(eventName: string | symbol, listener: (...args: any[]) => void): this; once<E extends keyof WriteStreamEventMap>( eventName: E, listener: (...args: WriteStreamEventMap[E]) => void, ): this; once(eventName: string | symbol, listener: (...args: any[]) => void): this; prependListener<E extends keyof WriteStreamEventMap>( eventName: E, listener: (...args: WriteStreamEventMap[E]) => void, ): this; prependListener(eventName: string | symbol, listener: (...args: any[]) => void): this; prependOnceListener<E extends keyof WriteStreamEventMap>( eventName: E, listener: (...args: WriteStreamEventMap[E]) => void, ): this; prependOnceListener(eventName: string | symbol, listener: (...args: any[]) => void): this; rawListeners<E extends keyof WriteStreamEventMap>(eventName: E): ((...args: WriteStreamEventMap[E]) => void)[]; rawListeners(eventName: string | symbol): ((...args: any[]) => void)[]; // eslint-disable-next-line @definitelytyped/no-unnecessary-generics removeAllListeners<E extends keyof WriteStreamEventMap>(eventName?: E): this; removeAllListeners(eventName?: string | symbol): this; removeListener<E extends keyof WriteStreamEventMap>( eventName: E, listener: (...args: WriteStreamEventMap[E]) => void, ): this; removeListener(eventName: string | symbol, listener: (...args: any[]) => void): this; // #endregion } } declare module "tty" { export * from "node:tty"; }
Save
cmd:
run