export interface TransportServicePort { /** * Emits an event to the Kafka broker with the given data. * Logs success or handles errors gracefully without throwing. * * @param event - The name of the event to emit. * @param data - The payload to send with the event. */ emit(event: string, data: T): Promise; } //# sourceMappingURL=transport.ports.d.ts.map