UNPKG

alpha-version-dce-check-in-api

Version:

API for taking attendance and checking people in.

15 lines (13 loc) 276 B
/** * Type of a launch assignment * @author Gabe Abrams */ interface LaunchAssignment { // Canvas id for the assignment id: number, // Name of the assignment name: string, // Number of points possible pointsPossible: number, } export default LaunchAssignment;