UNPKG

@chevre/domain

Version:

Chevre Domain Library for Node.js

22 lines (21 loc) 562 B
/** * COAイベント集計サービス */ import type * as COA from '@motionpicture/coa-service'; import type { EventRepo } from '../../../repo/event'; import * as factory from '../../../factory'; /** * イベント席数を更新する */ export declare function importFromCOA(params: { project: { id: string; typeOf: factory.organizationType.Project; }; locationBranchCode: string; importFrom: Date; importThrough: Date; }): (repos: { event: EventRepo; reserveService: COA.service.Reserve; }) => Promise<void>;