UNPKG

caccl

Version:

Canvas App Complete Connection Library: an all-in-one library for connecting your app to Canvas, handling lti, access tokens, and api.

11 lines (10 loc) 188 B
/** * Type of a launch assignment * @author Gabe Abrams */ interface LaunchAssignment { id: number; name: string; pointsPossible: number; } export default LaunchAssignment;