alpha-version-dce-check-in-ui
Version:
UI for taking attendance and checking people in.
11 lines (10 loc) • 489 B
TypeScript
import User from '../../../shared/types/User';
import VisitServerEndpoint from '../../../types/VisitServerEndpoint';
/**
* Given a course and event ID, fetch the corresponding roster.
* @author Benedikt Arnarsson
* @param courseId the ID of the course (Canvas generated)
* @returns a list of Users, containing ID and name information.
*/
declare const fetchStudentList: (courseId: number, visitServerEndpoint: VisitServerEndpoint) => Promise<User[]>;
export default fetchStudentList;