UNPKG

@itslanguage/api

Version:
53 lines (45 loc) 1.34 kB
/** * This file exports all the available challenges and their APIs for convenience only. * * @module api/challenges */ import * as choiceApi from './choice'; import * as choiceRecognitionApi from './choice/recognition'; import * as feedbackApi from './feedback'; import * as feedbackSpeechApi from './feedback/speech'; import * as pronunciationApi from './pronunciation'; import * as pronunciationAnalysisApi from './pronunciation/analysis'; import * as speechApi from './speech'; import * as speechRecordingApi from './speech/recordings'; /** * @type {module:api/challenges/choice} */ export var choice = choiceApi; /** * @type {module:api/challenges/choice/recognition} */ export var choiceRecognition = choiceRecognitionApi; /** * @type {module:api/challenges/feedback} */ export var feedback = feedbackApi; /** * @type {module:api/challenges/feedback/speech} */ export var feedbackSpeech = feedbackSpeechApi; /** * @type {module:api/challenges/pronunciation} */ export var pronunciation = pronunciationApi; /** * @type {module:api/challenges/pronunciation/analysis} */ export var pronunciationAnalysis = pronunciationAnalysisApi; /** * @type {module:api/challenges/speech} */ export var speech = speechApi; /** * @type {module:api/challenges/speech/recordings} */ export var speechRecording = speechRecordingApi;