UNPKG

caccl-lti

Version:

LTI launch validator for IMS-LTI standard launches.

15 lines (13 loc) 277 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;