alpha-version-dce-check-in-ui
Version:
UI for taking attendance and checking people in.
12 lines (11 loc) • 442 B
TypeScript
import CheckInUIProps from '../../../types/CheckInUIProps';
import SeriesInfo from '../../../shared/types/SeriesInfo';
/**
* Fetch the list of series corresponding to the event.
* @author Benedikt Arnarsson
* @param addArgName add arg description
* @param addArgName add arg description
* @returns add return description
*/
declare const fetchSeriesList: (opts: CheckInUIProps) => Promise<SeriesInfo[]>;
export default fetchSeriesList;