UNPKG

@novo-learning/novo-sdk

Version:

SDK for the Novolanguage Speech Analysis API

10 lines (8 loc) 252 B
import { ExerciseType } from '../exercise-type'; import { Option } from './option'; export class ChoiceExercise { type: ExerciseType = ExerciseType.choice; correctOptions: Array<Option>; incorrectOptions?: Array<Option>; multiple?: boolean; }