From 31d959ce3a7bbd10c48f343390f3a46909198b21 Mon Sep 17 00:00:00 2001 From: lexiaoyao2 Date: Wed, 3 Sep 2025 11:26:02 +0800 Subject: [PATCH] image ai adapter for visionKit Signed-off-by: lexiaoyao2 Change-Id: I1e8e30d5d0b18130d2a780241652d84ab98f9843 --- api/arkui/component/imageCommon.static.d.ets | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/arkui/component/imageCommon.static.d.ets b/api/arkui/component/imageCommon.static.d.ets index 04df3dc7c0..36dbcdf98e 100644 --- a/api/arkui/component/imageCommon.static.d.ets +++ b/api/arkui/component/imageCommon.static.d.ets @@ -109,9 +109,9 @@ export declare interface ImageAIOptions { /** * Image analyze types. * - * @type { ?ImageAnalyzerController } + * @type { ?(ImageAnalyzerController | ESValue) } * @syscap SystemCapability.ArkUI.ArkUI.Full * @since 20 */ - aiController?: ImageAnalyzerController; + aiController?: ImageAnalyzerController | ESValue; } -- Gitee