This repository was archived by the owner on May 4, 2019. It is now read-only.
Commit 16d27b5 1 parent babbf92 commit 16d27b5 Copy full SHA for 16d27b5
File tree 3 files changed +10
-1
lines changed
3 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ export interface SearchBaseModel {
35
35
export interface SubjectModel extends SearchBaseModel {
36
36
claimCodes ?: string [ ] ;
37
37
interactionTypeCodes ?: string [ ] ;
38
+ shortLabel ?: string ;
38
39
}
39
40
40
41
export interface ClaimModel extends SearchBaseModel {
Original file line number Diff line number Diff line change 1
1
import { AboutItemModel } from "../AboutItem/AboutItemModels" ;
2
+ import { InteractionTypeModel } from "../AboutTestItems/AboutTestItemsModels" ;
3
+ import { SubjectModel } from "../ItemSearch/ItemSearchModels" ;
2
4
3
5
export interface ItemGroupModel {
4
6
passage ?: ItemPdfModel ;
@@ -26,3 +28,8 @@ export interface ItemPdfModel {
26
28
captured : boolean ;
27
29
type : PdfViewType ;
28
30
}
31
+
32
+ export interface ScoreGuideViewModel {
33
+ interactionTypes : InteractionTypeModel [ ] ;
34
+ subjects : SubjectModel [ ] ;
35
+ }
Original file line number Diff line number Diff line change @@ -273,7 +273,8 @@ export {
273
273
ItemGroupModel ,
274
274
QuestionModel ,
275
275
ItemPdfModel ,
276
- PdfViewType
276
+ PdfViewType ,
277
+ ScoreGuideViewModel
277
278
} from "./Pdf/PdfModels" ;
278
279
export { QuestionView , QuestionViewProps } from "./Pdf/QuestionView" ;
279
280
You can’t perform that action at this time.
0 commit comments