@getanthill/datastore
Version:
Event-Sourced Datastore
11 lines (10 loc) • 307 B
TypeScript
import type { NextFunction, Request, Response } from 'express';
import type { Services } from '../../typings';
/**
* @alpha
*
* Aggregation route
*
* @param services Services
*/
export declare function aggregate(services: Services): (req: Request, res: Response, next: NextFunction) => Promise<void>;