UNPKG

@devgrid/netron

Version:

A powerful TypeScript library for building distributed systems with event bus, streaming capabilities, and remote object invocation. Features WebSocket-based bidirectional communication between Node.js and browser environments, service discovery, and type

10 lines (9 loc) 261 B
import { ServiceMetadata } from './types'; export declare class Definition { id: string; peerId: string; meta: ServiceMetadata; parentId: string; constructor(id: string, peerId: string, meta: ServiceMetadata); static nextId(): string; }