UNPKG

alpha-version-dce-check-in-api

Version:

API for taking attendance and checking people in.

8 lines (7 loc) 493 B
import { EventStateData } from 'dce-live-grouper'; import { CollectionInterface, Collection } from 'dce-mango'; import OccurrenceDocument from './shared/types/OccurrenceDocument'; declare const initCollections: (CollectionCons: typeof Collection) => void; declare const getOccurrenceCollection: () => CollectionInterface<OccurrenceDocument>; declare const getGroupCollection: () => CollectionInterface<EventStateData>; export { initCollections, getOccurrenceCollection, getGroupCollection, };