@pocketprep/types 1.15.22 → 1.15.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Study/Cloud.d.ts +3 -3
- package/package.json +1 -1
package/Study/Cloud.d.ts
CHANGED
|
@@ -800,12 +800,12 @@ export type fetchRecallQuizQuestions = (params: {
|
|
|
800
800
|
includeBuildListQuestions?: boolean
|
|
801
801
|
}) => QuestionJSON[]
|
|
802
802
|
|
|
803
|
-
export type
|
|
803
|
+
export type submitExamResult = (params: { examMetadataId: string; passed: boolean }) => void
|
|
804
804
|
|
|
805
|
-
export type
|
|
805
|
+
export type upsertUserExamBackground = (params: {
|
|
806
806
|
examMetadataId: string
|
|
807
807
|
passed?: boolean
|
|
808
808
|
hasTakenExam?: boolean
|
|
809
809
|
}) => UserExamBackgroundJSON
|
|
810
810
|
|
|
811
|
-
export type
|
|
811
|
+
export type fetchConceptQuizQuestions = (params: { conceptQuizId: string }) => Question[]
|