UNPKG

alpha-version-dce-check-in-ui

Version:

UI for taking attendance and checking people in.

9 lines (8 loc) 282 B
/** * Given all existing seriesIds, generate a new one that is not in the list. * @author Gabe Abrams * @param seriesIds - the list of existing seriesIds * @returns a new seriesId */ declare const genNewSeriesId: (seriesIds: number[]) => number; export default genNewSeriesId;