alpha-version-dce-check-in-ui
Version:
UI for taking attendance and checking people in.
18 lines (17 loc) • 670 B
TypeScript
import { GrouperAlgoSettings, StudentGroupAssignment } from 'dce-live-grouper';
import { OccurrenceBasicInfo } from '../../../shared/types';
import VisitServerEndpoint from '../../../types/VisitServerEndpoint';
/**
* Call the backend to post a new event in a given series, i.e. inheriting old groups.
* @author Benedikt Arnarsson
* @param occInfo
* @param seriesId
*/
declare const postNewEventInSeries: (opts: {
visitServerEndpoint: VisitServerEndpoint;
occInfo: OccurrenceBasicInfo;
seriesId: number;
grouperAlgoSettings: GrouperAlgoSettings;
preAssignments: StudentGroupAssignment[];
}) => Promise<void>;
export default postNewEventInSeries;