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

EndpointStats

import type { EndpointStats } from "https://raw.githubusercontent.com/nats-io/nats.deno/v1.27.0/nats-base-client/internal_mod.ts";

Statistics for an endpoint

type EndpointStats = ServiceIdentity & {
endpoints?: NamedEndpointStats[];
started: string;
}
;

§Type

§
ServiceIdentity & {
endpoints?: NamedEndpointStats[];
started: string;
}
[src]