From f917d7c591cb56f699c86322f4364b7d3d80e714 Mon Sep 17 00:00:00 2001 From: lihong Date: Tue, 21 Jun 2022 20:59:40 +0800 Subject: [PATCH] lihong67@huawei.com support custom component common attribute. Signed-off-by: lihong Change-Id: I119649168451499111a5eeeaf5068bdc216997de --- api/@internal/component/ets/common.d.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/api/@internal/component/ets/common.d.ts b/api/@internal/component/ets/common.d.ts index e05c939d91..9e88fb4657 100644 --- a/api/@internal/component/ets/common.d.ts +++ b/api/@internal/component/ets/common.d.ts @@ -1844,7 +1844,12 @@ declare class CommonShapeMethod extends CommonMethod { * Custom Component * @since 7 */ -declare class CustomComponent { +/** + * Custom Component + * @extends CommonAttribute + * @since 9 + */ +declare class CustomComponent extends CommonAttribute { /** * Customize the pop-up content constructor. * @since 7 -- Gitee