alpha-version-dce-check-in-api
Version:
API for taking attendance and checking people in.
12 lines (11 loc) • 548 B
TypeScript
import HandlerWrapper from '../types/HandlerWrapper';
import Router from '../types/Router';
import CanvasAPI from '../shared/types/CanvasAPI';
/**
* Endpoint for retrieving the current Canvas course roster (list of students).
* @author Benedikt Arnarsson
* @param router the router that we are adding the endpoint to.
* @param getCanvasAPI function to retrieve API for interacting with Canvas.
*/
declare const addGetRoster: (router: Router, getCanvasAPI: () => CanvasAPI, handlerWrapper: HandlerWrapper) => void;
export default addGetRoster;