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

EndpointInfo

import type { EndpointInfo } from "https://raw.githubusercontent.com/nats-io/nats.deno/v1.27.0/nats-base-client/internal_mod.ts";
type EndpointInfo = {
name: string;
subject: string;
metadata?: Record<string, string>;
queue_group?: string;
}
;

§Type

§
{
name: string;
subject: string;
metadata?: Record<string, string>;
queue_group?: string;
}
[src]