alpha-version-dce-check-in-api
Version:
API for taking attendance and checking people in.
11 lines (10 loc) • 429 B
TypeScript
import HandlerWrapper from '../types/HandlerWrapper';
import Router from '../types/Router';
/**
* Endpoint for retrieving the list of series corresponding to the ihid.
* Returns a list of occurrence IDs.
* @author Benedikt Arnarsson
* @param router the router which we are adding this endpoint to.
*/
declare const addGetSeriesList: (router: Router, handlerWrapper: HandlerWrapper) => void;
export default addGetSeriesList;