@pocketprep/types 1.14.44 → 1.14.46
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 -1
- package/Teach/Cloud.d.ts +1 -0
- package/package.json +1 -1
package/Study/Cloud.d.ts
CHANGED
|
@@ -687,7 +687,9 @@ export type fetchReferralInfo = (params: { bundleId: string }) => {
|
|
|
687
687
|
code: string
|
|
688
688
|
}
|
|
689
689
|
|
|
690
|
-
export type fetchPrebuiltQuizQuestions = (params: {
|
|
690
|
+
export type fetchPrebuiltQuizQuestions = (params: {
|
|
691
|
+
prebuiltQuizId: string
|
|
692
|
+
}) => {
|
|
691
693
|
prebuiltQuiz: PrebuiltQuiz
|
|
692
694
|
questions: QuestionJSON[]
|
|
693
695
|
} | Quiz
|
package/Teach/Cloud.d.ts
CHANGED