UNPKG

alpha-version-dce-check-in-api

Version:

API for taking attendance and checking people in.

12 lines (9 loc) 295 B
// Import types import CheckInUIProps from './CheckInUIProps'; import MMDDYY from './MMDDYY'; /** * Type describing the base info for an Occurrence (enough to query DB). * @author Benedikt Arnarsson */ type OccurrenceBasicInfo = CheckInUIProps & MMDDYY; export default OccurrenceBasicInfo;