@dolittle/sdk.aggregates
Version:
Dolittle is a decentralized, distributed, event-driven microservice platform built to harness the power of events.
6 lines • 331 B
TypeScript
import { AggregateRoot } from './AggregateRoot';
/**
* Defines the callback for performing an action on an implementation of {@link AggregateRoot}.
*/
export declare type AggregateRootAction<TAggregate extends AggregateRoot> = (aggregateRoot: TAggregate) => void | Promise<void>;
//# sourceMappingURL=AggregateRootAction.d.ts.map