@dolittle/sdk.aggregates
Version:
Dolittle is a decentralized, distributed, event-driven microservice platform built to harness the power of events.
13 lines (10 loc) • 492 B
text/typescript
// Copyright (c) Dolittle. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
import { Artifacts } from '@dolittle/sdk.artifacts';
import { AggregateRootId } from '@dolittle/sdk.events';
import { AggregateRootType } from './AggregateRootType';
/**
* Defines the system for working with {@link AggregateRootType}.
*/
export abstract class IAggregateRootTypes extends Artifacts<AggregateRootType, AggregateRootId> {
}