/**
* Type of a launch assignment
* @author Gabe Abrams
*/interfaceLaunchAssignment {
// Canvas id for the assignmentid: number,
// Name of the assignmentname: string,
// Number of points possiblepointsPossible: number,
};
exportdefaultLaunchAssignment;