alpha-version-dce-check-in-ui
Version:
UI for taking attendance and checking people in.
12 lines (9 loc) • 334 B
text/typescript
// Import types
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;