diff --git a/api/@internal/component/ets/enums.d.ts b/api/@internal/component/ets/enums.d.ts index b97c00744261df8cd346502cabe3b3f0c852792f..cba5c37fdc7275a77e430219f5dfd1b054ba95fa 100644 --- a/api/@internal/component/ets/enums.d.ts +++ b/api/@internal/component/ets/enums.d.ts @@ -131,6 +131,20 @@ declare enum ImageFit { * @since 7 */ None, + + /** + * Keep the aspect ratio to zoom out or zoom in so that the image is completely displayed within the display boundary. + * Fill empty space of the component with blurred image. + * @since 9 + */ + Blur, + + /** + * Keep the aspect ratio to zoom out or zoom in so that the image is completely displayed within the display boundary. + * Fill empty space of the component with blurred image. The border between the original and blurred images is smooth. + * @since 9 + */ + BlurFade, } /**