@quesmed/types-rn 2.2.29 → 2.2.30
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/package.json
CHANGED
|
@@ -14,10 +14,11 @@ export interface IMarksheetsVar {
|
|
|
14
14
|
solo?: boolean;
|
|
15
15
|
};
|
|
16
16
|
}
|
|
17
|
-
export
|
|
17
|
+
export interface Marksheets {
|
|
18
18
|
results: (graphqlNormalize & IMarksheet)[];
|
|
19
19
|
total: number;
|
|
20
|
-
}
|
|
20
|
+
}
|
|
21
|
+
export declare type IMarksheetsData = RestrictedData<Marksheets, 'marksheets'>;
|
|
21
22
|
export declare const MARKSHEETS: import("@apollo/client").DocumentNode;
|
|
22
23
|
export declare type ILatestPastMarksheetIdVar = null;
|
|
23
24
|
export declare type ILatestPastMarksheetIdData = RestrictedData<number, 'latestPastMarksheetId'>;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import { IDailyProgressInfo,
|
|
1
|
+
import { IDailyProgressInfo, ITodo, ITopic, IUser } from '../../../models';
|
|
2
|
+
import { Marksheets } from './marksheet';
|
|
2
3
|
import { IUniversitiesRankSpeciality } from './university';
|
|
3
4
|
export interface IDashboardQBank {
|
|
4
5
|
restricted: {
|
|
5
6
|
latestPastMarksheetId: number;
|
|
6
7
|
user: IUser;
|
|
7
|
-
marksheets:
|
|
8
|
+
marksheets: Marksheets;
|
|
8
9
|
dailyFeed: ITodo;
|
|
9
10
|
dailyProgress: IDailyProgressInfo[];
|
|
10
11
|
topics: ITopic[];
|