UNPKG

@typescript-eda/domain

Version:

Core domain primitives for event-driven architecture

12 lines 345 B
/** * @fileoverview This file defines the Repository interface, a marker interface for repositories. * @author rydnr * @module domain/repository */ import { Port } from './port'; /** * Represents a repository, which is a collection of domain objects. */ export interface Repository extends Port { } //# sourceMappingURL=repository.d.ts.map