@chevre/domain
Version:
Chevre Domain Library for Node.js
14 lines (13 loc) • 616 B
TypeScript
import * as factory from '../../../factory';
import type { ActionRepo } from '../../../repo/action';
import type { EventRepo } from '../../../repo/event';
import type { EventSeriesRepo } from '../../../repo/eventSeries';
import type { MovieTheaterRepo } from '../../../repo/place/movieTheater';
import type { TaskRepo } from '../../../repo/task';
export declare function createEventSeries(params: factory.task.createEvent.ICreateEventSeriesAction): (repos: {
action: ActionRepo;
event: EventRepo;
eventSeries: EventSeriesRepo;
movieTheater: MovieTheaterRepo;
task: TaskRepo;
}) => Promise<void>;