@quesmed/types-rn 2.5.45 → 2.5.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/models/Question.d.ts +5 -0
- package/package.json +1 -1
package/models/Question.d.ts
CHANGED
|
@@ -144,6 +144,11 @@ export interface IQuestionType {
|
|
|
144
144
|
id: Id;
|
|
145
145
|
name: string;
|
|
146
146
|
}
|
|
147
|
+
export interface IProductsQuestion {
|
|
148
|
+
id: Id;
|
|
149
|
+
productId: Id;
|
|
150
|
+
questionId: Id;
|
|
151
|
+
}
|
|
147
152
|
export declare function isQuestionSBA(data: IQuestionAll): data is IQuestionSBA;
|
|
148
153
|
export interface IQuestionSBA extends IQuestion {
|
|
149
154
|
answer: [string];
|