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

ServiceConfig

import type { ServiceConfig } from "https://raw.githubusercontent.com/nats-io/nats.deno/v1.27.0/nats-base-client/internal_mod.ts";
type ServiceConfig = {
name: string;
version: string;
description?: string;
statsHandler?: (endpoint: Endpoint) => Promise<unknown | null>;
metadata?: Record<string, string>;
queue?: string;
}
;

§Type

§
{
name: string;
version: string;
description?: string;
statsHandler?: (endpoint: Endpoint) => Promise<unknown | null>;
metadata?: Record<string, string>;
queue?: string;
}
[src]