@quesmed/types 1.3.0 → 1.3.1
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
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { EDifficultyType, Id, IDashboardOsce, IOsceMarksheet, IOsceStation, IOsceStationItem } from '../../../models';
|
|
2
|
+
import { ITopic } from './../../../models/Topic';
|
|
2
3
|
export interface IDashboardOsceVar {
|
|
3
4
|
solo: boolean;
|
|
4
5
|
}
|
|
@@ -22,6 +23,7 @@ export interface IOsceStationsVar {
|
|
|
22
23
|
osceTypeId?: Id;
|
|
23
24
|
solo: boolean;
|
|
24
25
|
attempted: boolean;
|
|
26
|
+
topicIds: Id[];
|
|
25
27
|
difficulty: EDifficultyType[];
|
|
26
28
|
}
|
|
27
29
|
export declare type IOsceStationsData = IOsceStationItem[];
|
|
@@ -33,3 +35,6 @@ export interface IHeartbeatVar {
|
|
|
33
35
|
agoraId: string;
|
|
34
36
|
}
|
|
35
37
|
export declare type IHeartBeatData = boolean;
|
|
38
|
+
export declare type IOsceTopicsVar = null;
|
|
39
|
+
export interface IOsceTopicsData extends ITopic {
|
|
40
|
+
}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
-
import { ITopic } from '../../../models';
|
|
1
|
+
import { IOsceStation, ITopic } from '../../../models';
|
|
2
2
|
export declare type IQuesBookVar = null;
|
|
3
3
|
export declare type IQuesBookData = ITopic[];
|
|
4
|
+
export declare type IOsceBookVar = null;
|
|
5
|
+
export declare type IOsceBookData = IOsceStation[];
|