@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
13 lines • 394 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Reference = void 0;
class Reference {
constructor(defId) {
this.defId = defId;
if (!defId || typeof defId !== 'string') {
throw new Error('Service definition ID must be a non-empty string');
}
}
}
exports.Reference = Reference;
//# sourceMappingURL=reference.js.map