UNPKG

alpha-version-dce-check-in-ui

Version:

UI for taking attendance and checking people in.

10 lines (9 loc) 223 B
import Occurrence from './Occurrence'; /** * Type for storing Occurrence info in DB. * @author Benedikt Arnarsson hoe */ type OccurrenceDocument = ({ id: string; } & (Occurrence)); export default OccurrenceDocument;