alpha-version-dce-check-in-ui
Version:
UI for taking attendance and checking people in.
17 lines (16 loc) • 702 B
TypeScript
import { StudentGroupAssignment, GrouperAlgoSettings } from 'dce-live-grouper';
import CheckInUIProps from '../../../types/CheckInUIProps';
import MMDDYY from '../../../shared/types/MMDDYY';
import OccurrenceGrouperInfo from '../../../shared/types/OccurrenceGrouperInfo';
/**
* Function for calling the backend to create EventStateData for the occurrence.
* @author Benedikt Arnarsson
*/
declare const postEventForOccurrence: (opts: {
checkInProps: CheckInUIProps;
occurrenceDate: MMDDYY;
occurrenceGrouperInfo: OccurrenceGrouperInfo;
preAssignments: StudentGroupAssignment[];
grouperAlgoSettings: GrouperAlgoSettings;
}) => Promise<void>;
export default postEventForOccurrence;