freemium-survey-components 1.0.66 → 1.0.67
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/lib/types/types.d.ts +6 -0
- package/package.json +1 -1
package/lib/types/types.d.ts
CHANGED
|
@@ -119,6 +119,12 @@ export declare type SurveyLayoutType = 'card' | 'standard';
|
|
|
119
119
|
export declare type SurveyMetaType = {
|
|
120
120
|
survey_layout?: SurveyLayoutType | null;
|
|
121
121
|
created_by?: string | null;
|
|
122
|
+
default_lang?: string;
|
|
123
|
+
supported_lang?: {
|
|
124
|
+
code: string;
|
|
125
|
+
isEnable: boolean;
|
|
126
|
+
fileUrl: string;
|
|
127
|
+
}[];
|
|
122
128
|
};
|
|
123
129
|
export declare type SurveyBlockCategoryType = {
|
|
124
130
|
id?: string | null;
|