/** * Lesson Types * * Types for QTI lesson and question feedback resources. */ import type { FeedbackType } from './base'; /** * Lesson feedback entity. */ export interface LessonFeedback { questionId?: string; userId: string; feedback: string; type: FeedbackType; lessonId: string; humanApproved?: boolean | boolean[]; } //# sourceMappingURL=lesson.d.ts.map