UNPKG

@typescript-eda/domain

Version:

Core domain primitives for event-driven architecture

11 lines 306 B
/** * @fileoverview This file defines the Port interface, a marker interface for ports. * @author rydnr * @module domain/port */ /** * Represents a port, which is an entry point to the application or a connection to an external service. */ export interface Port { } //# sourceMappingURL=port.d.ts.map