@lordicon/utils-lottie 1.1.0 → 1.2.0
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/lottie.d.ts +5 -0
- package/package.json +1 -1
package/dist/lottie.d.ts
CHANGED
|
@@ -53,3 +53,8 @@ export declare function updateLottieProperties(data: LottieData | LottieAnimatio
|
|
|
53
53
|
* @returns Lottie data with colors remapped according to the provided color map.
|
|
54
54
|
*/
|
|
55
55
|
export declare function remapColors(data: LottieData, colors: ColorMap): LottieData;
|
|
56
|
+
/**
|
|
57
|
+
* Recursively removes expressions from Lottie data by deleting "x" properties that contain expressions.
|
|
58
|
+
* @param data Lottie data to remove expressions from.
|
|
59
|
+
*/
|
|
60
|
+
export declare function removeExpressions(data: LottieData): void;
|