alpha-version-dce-check-in-api
Version:
API for taking attendance and checking people in.
10 lines (9 loc) • 388 B
TypeScript
import HandlerWrapper from '../types/HandlerWrapper';
import Router from '../types/Router';
/**
* Add all routes for interacting with the occurrence DB table.
* @author Benedikt Arnarsson
* @param app express application which we are adding routes to.
*/
declare const addOccurrenceRoutes: (router: Router, handlerWrapper: HandlerWrapper) => void;
export default addOccurrenceRoutes;