alpha-version-dce-check-in-ui
Version:
UI for taking attendance and checking people in.
11 lines (10 loc) • 597 B
TypeScript
import OccurrenceBasicInfo from '../../shared/types/OccurrenceBasicInfo';
import VisitServerEndpoint from '../../types/VisitServerEndpoint';
/**
* Call the backend to check whether the occurrence has already started.
* @author Benedikt Arnarsson
* @param occurrenceBasicInfo information needed to query for the occurrence.
* @returns a boolean indicating whether the occurrence has already been created/started.
*/
declare const isOccurrenceStarted: (visitServerEndpoint: VisitServerEndpoint, occurrenceBasicInfo: OccurrenceBasicInfo) => Promise<boolean>;
export default isOccurrenceStarted;