alpha-version-dce-check-in-api
Version:
API for taking attendance and checking people in.
12 lines (11 loc) • 540 B
TypeScript
import HandlerWrapper from '../types/HandlerWrapper';
import Router from '../types/Router';
import RecordAttendanceFunction from '../shared/types/RecordAttendanceFunction';
/**
* Endpoint for taking attendance.
* @author Benedikt Arnarsson
* @param router the router that we are adding this endpoint to.
* @param recordAttendance function for recording attendance.
*/
declare const addPutAttendance: (router: Router, handlerWrapper: HandlerWrapper, recordAttendance: RecordAttendanceFunction) => void;
export default addPutAttendance;