@microsoft/dev-tunnels-ssh
Version:
SSH library for Dev Tunnels
19 lines • 639 B
TypeScript
/**
* Collects cumulative measurements about a channel.
*/
export declare class ChannelMetrics {
private bytesSentSum;
private bytesReceivedSum;
/**
* Gets the total cumulative number of bytes sent for the duration of the channel,
* not including message framing, padding, and MAC bytes.
*/
get bytesSent(): number;
/**
* Gets the total cumulative number of bytes received for the duration of the channel,
* not including message framing, padding, and MAC bytes.
*/
get bytesReceived(): number;
toString(): string;
}
//# sourceMappingURL=channelMetrics.d.ts.map