import { Type } from '@nestjs/common'; import { ICommandHandler } from './commands/command-handler.interface'; import { IEventHandler } from './events/event-handler.interface'; import { IQueryHandler } from './queries/query-handler.interface'; export interface CqrsOptions { events?: Type[]; queries?: Type[]; commands?: Type[]; sagas?: Type[]; }