@pocketprep/types 1.6.31 → 1.6.32
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 +7 -2
- package/package.json +1 -1
package/Study/Cloud.d.ts
CHANGED
|
@@ -268,8 +268,13 @@ export type fetchExamDataFromAnswerRecordIds = (params: {
|
|
|
268
268
|
|
|
269
269
|
export type fetchQuestionsByQuizIds = (params: { quizIds: string[]; compositeKey: string }) => ExamData[]
|
|
270
270
|
|
|
271
|
-
export type fetchSerialQuestionInfoLib = (params: { compositeKey: string }) =>
|
|
272
|
-
|
|
271
|
+
export type fetchSerialQuestionInfoLib = (params: { compositeKey: string }) => {
|
|
272
|
+
[key: string]: {
|
|
273
|
+
subject: string
|
|
274
|
+
isSpecial?: boolean
|
|
275
|
+
isMockQuestion?: boolean
|
|
276
|
+
}
|
|
277
|
+
}
|
|
273
278
|
|
|
274
279
|
export type fetchQuizHistoryData = (params: {
|
|
275
280
|
compositeKey: string
|