alpha-version-dce-check-in-ui
Version:
UI for taking attendance and checking people in.
9 lines (8 loc) • 316 B
TypeScript
import CheckInUIProps from '../../types/CheckInUIProps';
import MMDDYY from './MMDDYY';
/**
* Type describing the base info for an Occurrence (enough to query DB).
* @author Benedikt Arnarsson
*/
type OccurrenceBasicInfo = Omit<CheckInUIProps, 'visitServerEndpoint'> & MMDDYY;
export default OccurrenceBasicInfo;