From 3ba151ae6affa0707fec137a9140f16d48f8171a Mon Sep 17 00:00:00 2001 From: zhangbingce Date: Wed, 16 Mar 2022 10:07:41 +0800 Subject: [PATCH] fixed c40d6db from https://gitee.com/zhangbingce/interface_sdk-js/pulls/1140 delete systemapi label in xcomponent Signed-off-by: zhangbingce Change-Id: Ib25effffea6f04cfc7d56236e30c9021821ed253 --- api/@internal/component/ets/xcomponent.d.ts | 9 --------- 1 file changed, 9 deletions(-) diff --git a/api/@internal/component/ets/xcomponent.d.ts b/api/@internal/component/ets/xcomponent.d.ts index 93a449c585..52ef742479 100644 --- a/api/@internal/component/ets/xcomponent.d.ts +++ b/api/@internal/component/ets/xcomponent.d.ts @@ -16,13 +16,11 @@ /** * Defines XComponentController * @since 8 - * @systemapi */ declare class XComponentController { /** * constructor. * @since 8 - * @systemapi */ constructor(); @@ -36,14 +34,12 @@ declare class XComponentController { /** * get the context of native XComponent. * @since 8 - * @systemapi */ getXComponentContext(); /** * set the surface size created by XComponent. * @since 8 - * @systemapi */ setXComponentSurfaceSize(value: { surfaceWidth: number; @@ -54,13 +50,11 @@ declare class XComponentController { /** * Defines XComponent. * @since 8 - * @systemapi */ interface XComponentInterface { /** * Constructor parameters * @since 8 - * @systemapi */ (value: { id: string; type: string; libraryname?: string; controller?: XComponentController }): XComponentAttribute; } @@ -68,20 +62,17 @@ interface XComponentInterface { /** * Defines XComponentAttribute. * @since 8 - * @systemapi */ declare class XComponentAttribute extends CommonMethod { /** * Called when judging whether the xcomponent surface is created. * @since 8 - * @systemapi */ onLoad(callback: (event?: object) => void): XComponentAttribute; /** * Called when judging whether the xcomponent is destroyed. * @since 8 - * @systemapi */ onDestroy(event: () => void): XComponentAttribute; } -- Gitee