import { LearningOutcomes } from '../model/LearningOutcomes'; import { AssessmentQuestions } from '../model/AssessmentQuestions'; export interface VideoAIMetadataClient { getLearningOutcomes(videoId: string): Promise; getAssessmentQuestions(videoId: string): Promise; }