Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Stats

import type { Stats } from "https://raw.githubusercontent.com/nats-io/nats.deno/v1.27.0/nats-base-client/internal_mod.ts";
interface Stats {
inBytes: number;
inMsgs: number;
outBytes: number;
outMsgs: number;
}

§Properties

§
inBytes: number
[src]

Number of bytes received by the client.

§
inMsgs: number
[src]

Number of messages received by the client.

§
outBytes: number
[src]

Number of bytes sent by the client.

§
outMsgs: number
[src]

Number of messages sent by the client.