UNPKG

caccl-lti

Version:

LTI launch validator for IMS-LTI standard launches.

14 lines (13 loc) 315 B
/** * Type for description of outcomes * @author Gabe Abrams */ interface OutcomeDescription { url: string; sourcedId: string; urlSubmissionAccepted: boolean; textSubmissionAccepted: boolean; totalScoreAccepted: boolean; submittedAtAccepted: boolean; } export default OutcomeDescription;