loader.js 476 Bytes
Newer Older
cyrille's avatar
cyrille committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
/**
 * Lessons Collection
 *
 * @since    3.13.0
 * @version  3.16.0
 */
define( [
		'Collections/Lessons',
		'Collections/QuestionChoices',
		'Collections/Questions',
		'Collections/QuestionTypes',
		'Collections/Sections'
	], function(
		Lessons,
		QuestionChoices,
		Questions,
		QuestionTypes,
		Sections
	) {

		return {
			Lessons: Lessons,
			QuestionChoices: QuestionChoices,
			Questions: Questions,
			QuestionTypes: QuestionTypes,
			Sections: Sections,
		};

} );