@isettingkit/business-rules 1.0.2 → 1.0.4
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/dist/index.es.d.ts +4 -0
- package/dist/index.es.js +2698 -685
- package/package.json +4 -2
package/dist/index.es.d.ts
CHANGED
|
@@ -188,4 +188,8 @@ export declare const sortDisplayDataSampleSwitchPlaces: (props: IRevertSortedDat
|
|
|
188
188
|
|
|
189
189
|
export declare const sortDisplayDataSwitchPlaces: (props: IRevertSortedData) => IRuleDecision[] | undefined;
|
|
190
190
|
|
|
191
|
+
export declare const translateObject: (data: Record<string, any>, targetLang: string) => Promise<Record<string, any>>;
|
|
192
|
+
|
|
193
|
+
export declare const translateText: (text: string, targetLang: string) => Promise<string>;
|
|
194
|
+
|
|
191
195
|
export { }
|