alpha-version-dce-check-in-api
Version:
API for taking attendance and checking people in.
10 lines (9 loc) • 373 B
TypeScript
import HandlerWrapper from '../types/HandlerWrapper';
import Router from '../types/Router';
/**
* Endpoint for creating an event,
* expects a JSON body containing CreateEventBody.
* @param app the Express app which we are adding this endpoint to.
*/
declare const addCreateEvent: (router: Router, handlerWrapper: HandlerWrapper) => void;
export default addCreateEvent;