UNPKG

alpha-version-dce-check-in-ui

Version:

UI for taking attendance and checking people in.

13 lines (12 loc) 661 B
import { EventStateData } from 'dce-live-grouper'; import OccurrenceBasicInfo from '../../../shared/types/OccurrenceBasicInfo'; import MMDDYY from '../../../shared/types/MMDDYY'; import VisitServerEndpoint from '../../../types/VisitServerEndpoint'; /** * Call the backend to retrieve old groups and algorithm choices. * @author Benedikt Arnarsson * @param occInfo the basic info for the current occurrence. * @param mmddyy the date of the event we are retrieving info for. */ declare const getOldEventInfo: (visitServerEndpoint: VisitServerEndpoint, occInfo: OccurrenceBasicInfo, mmddyy: MMDDYY) => Promise<EventStateData>; export default getOldEventInfo;