UNPKG

alpha-version-dce-check-in-ui

Version:

UI for taking attendance and checking people in.

10 lines (9 loc) 423 B
import Occurrence from '../../../shared/types/Occurrence'; import VisitServerEndpoint from '../../../types/VisitServerEndpoint'; /** * Create a new occurrence document in the database. * @author Benedikt Arnarsson * @param occ the occurrence that is being placed in the DB */ declare const putNewOccurrence: (visitServerEndpoint: VisitServerEndpoint, occ: Occurrence) => Promise<void>; export default putNewOccurrence;