alpha-version-dce-check-in-ui
Version:
UI for taking attendance and checking people in.
18 lines (15 loc) • 454 B
text/typescript
// Import types
import VisitServerEndpoint from './VisitServerEndpoint';
/**
* Input to the CheckInUI and starting point for constructing Occurrences.
* @author Benedikt Arnarsson
*/
type CheckInUIProps = {
// Course ID generated by Canvas
courseId: number,
// Intra-Helix ID generated by Gather
ihid: string,
// Function used to visit backend server endpoints
visitServerEndpoint: VisitServerEndpoint,
};
export default CheckInUIProps;