From c41737b0592a5004ec41f10a75e1f2181d10c204 Mon Sep 17 00:00:00 2001 From: lanyill Date: Fri, 18 Mar 2022 19:48:26 +0800 Subject: [PATCH] fixed 43a7a7d from https://gitee.com/lanyill/interface_sdk-js/pulls/1245 Web hitTextType enum fix Signed-off-by: lanyill Change-Id: I08bffab25cf74bdd12317b073dc1e8d2b2a2acd2 --- api/@internal/component/ets/web.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api/@internal/component/ets/web.d.ts b/api/@internal/component/ets/web.d.ts index 8f4cdb4f36..ea61b0998e 100755 --- a/api/@internal/component/ets/web.d.ts +++ b/api/@internal/component/ets/web.d.ts @@ -74,7 +74,7 @@ declare enum HitTestType { * The edit text. * @since 8 */ - Edit, + EditText, /** * The email address. @@ -86,13 +86,13 @@ declare enum HitTestType { * The HTML::a tag with src=http. * @since 8 */ - Http, + HttpAnchor, /** * The HTML::a tag with src=http + HTML::img. * @since 8 */ - HttpImg, + HttpAnchorImg, /** * The HTML::img tag. -- Gitee