/
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/globals.d.ts
(5084B)
declare var global: typeof globalThis; declare var process: NodeJS.Process; interface ErrorConstructor { /** * Creates a `.stack` property on `targetObject`, which when accessed returns * a string representing the location in the code at which * `Error.captureStackTrace()` was called. * * ```js * const myObject = {}; * Error.captureStackTrace(myObject); * myObject.stack; // Similar to `new Error().stack` * ``` * * The first line of the trace will be prefixed with * `${myObject.name}: ${myObject.message}`. * * The optional `constructorOpt` argument accepts a function. If given, all frames * above `constructorOpt`, including `constructorOpt`, will be omitted from the * generated stack trace. * * The `constructorOpt` argument is useful for hiding implementation * details of error generation from the user. For instance: * * ```js * function a() { * b(); * } * * function b() { * c(); * } * * function c() { * // Create an error without stack trace to avoid calculating the stack trace twice. * const { stackTraceLimit } = Error; * Error.stackTraceLimit = 0; * const error = new Error(); * Error.stackTraceLimit = stackTraceLimit; * * // Capture the stack trace above function b * Error.captureStackTrace(error, b); // Neither function c, nor b is included in the stack trace * throw error; * } * * a(); * ``` */ captureStackTrace(targetObject: object, constructorOpt?: Function): void; /** * @see https://v8.dev/docs/stack-trace-api#customizing-stack-traces */ prepareStackTrace(err: Error, stackTraces: NodeJS.CallSite[]): any; /** * The `Error.stackTraceLimit` property specifies the number of stack frames * collected by a stack trace (whether generated by `new Error().stack` or * `Error.captureStackTrace(obj)`). * * The default value is `10` but may be set to any valid JavaScript number. Changes * will affect any stack trace captured _after_ the value has been changed. * * If set to a non-number value, or set to a negative number, stack traces will * not capture any frames. */ stackTraceLimit: number; } /** * Enable this API with the `--expose-gc` CLI flag. */ declare var gc: NodeJS.GCFunction | undefined; declare namespace NodeJS { interface CallSite { getColumnNumber(): number | null; getEnclosingColumnNumber(): number | null; getEnclosingLineNumber(): number | null; getEvalOrigin(): string | undefined; getFileName(): string | null; getFunction(): Function | undefined; getFunctionName(): string | null; getLineNumber(): number | null; getMethodName(): string | null; getPosition(): number; getPromiseIndex(): number | null; getScriptHash(): string; getScriptNameOrSourceURL(): string | null; getThis(): unknown; getTypeName(): string | null; isAsync(): boolean; isConstructor(): boolean; isEval(): boolean; isNative(): boolean; isPromiseAll(): boolean; isToplevel(): boolean; } interface ErrnoException extends Error { errno?: number; code?: string; path?: string; syscall?: string; } interface RefCounted { ref(): this; unref(): this; } interface Dict<T> { [key: string]: T | undefined; } interface ReadOnlyDict<T> { readonly [key: string]: T | undefined; } type PartialOptions<T> = { [K in keyof T]?: T[K] | undefined }; interface GCFunction { (minor?: boolean): void; (options: NodeJS.GCOptions & { execution: "async" }): Promise<void>; (options: NodeJS.GCOptions): void; } interface GCOptions { execution?: "sync" | "async" | undefined; flavor?: "regular" | "last-resort" | undefined; type?: "major-snapshot" | "major" | "minor" | undefined; filename?: string | undefined; } /** An iterable iterator returned by the Node.js API. */ interface Iterator<T, TReturn = undefined, TNext = any> extends IteratorObject<T, TReturn, TNext> { [Symbol.iterator](): NodeJS.Iterator<T, TReturn, TNext>; } /** An async iterable iterator returned by the Node.js API. */ interface AsyncIterator<T, TReturn = undefined, TNext = any> extends AsyncIteratorObject<T, TReturn, TNext> { [Symbol.asyncIterator](): NodeJS.AsyncIterator<T, TReturn, TNext>; } /** The [`BufferSource`](https://webidl.spec.whatwg.org/#BufferSource) type from the Web IDL specification. */ type BufferSource = NonSharedArrayBufferView | ArrayBuffer; /** The [`AllowSharedBufferSource`](https://webidl.spec.whatwg.org/#AllowSharedBufferSource) type from the Web IDL specification. */ type AllowSharedBufferSource = ArrayBufferView | ArrayBufferLike; }
Save
cmd:
run