UNPKG

alpha-version-dce-check-in-api

Version:

API for taking attendance and checking people in.

20 lines (17 loc) 351 B
// Import types import Occurrence from './Occurrence'; /** * Type for storing Occurrence info in DB. * @author Benedikt Arnarsson hoe */ type OccurrenceDocument = ( & { // Occurrence ID generated from OccurrenceBasicInfo id: string, } & ( // Course ID and Intra-Helix ID Occurrence ) ); export default OccurrenceDocument;