caccl-api
Version:
A class that defines a set of smart Canvas endpoints that actually behave how you'd expect them to.
17 lines (15 loc) • 411 B
text/typescript
type CanvasQuizQuestionType = (
'calculated_question'
| 'essay_question'
| 'file_upload_question'
| 'fill_in_multiple_blanks_question'
| 'matching_question'
| 'multiple_answers_question'
| 'multiple_choice_question'
| 'multiple_dropdowns_question'
| 'numerical_question'
| 'short_answer_question'
| 'text_only_question'
| 'true_false_question'
);
export default CanvasQuizQuestionType;