UNPKG

@novo-learning/novo-sdk

Version:

SDK for the Novolanguage Speech Analysis API

14 lines (12 loc) 417 B
import { ExerciseType } from '../exercise-type'; import { Word } from './word'; /** * A word cloud is a combination of multiple pronunciation exercises. The student can continue reading and will get feedback after every exercise. */ export class WordCloudExercise { /** * list of pronunciation exercises */ type: ExerciseType = ExerciseType.word_cloud; pronunciations: Array<{ words: Array<Word> }>; }