import * as factory from '../factory'; import { ISearchResult, Service } from '../service'; interface IAggregation { typeOf: string; project: { id: string; typeOf: factory.organizationType.Project; }; aggregateDate: Date; aggregateDuration: string; aggregateStart: Date; reservationCount?: number; } interface ISearchConditions { aggregateStart: { $gte: Date; $lte: Date; }; } /** * 集計サービス */ export declare class AggregationService extends Service { search(params: ISearchConditions): Promise>; } export {};