ComponentV2增加组件冻结接口

Signed-off-by: zhuzijia <zhuzijia@huawei.com>
Change-Id: I6b50ead0963f36a1efab3a7aae6c6aa94377d7f4
This commit is contained in:
zhuzijia 2024-06-05 14:12:51 +08:00
parent 29b8707e79
commit 13e9184d63

View File

@ -197,11 +197,12 @@ declare const Component: ClassDecorator & ((options: ComponentOptions) => ClassD
/**
* Defining ComponentV2 ClassDecorator
*
* ComponentV2 is a ClassDecorator and it supports ComponentOptions as parameters.
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @crossplatform
* @since 12
*/
declare const ComponentV2: ClassDecorator;
declare const ComponentV2: ClassDecorator & ((options: ComponentOptions) => ClassDecorator);
/**
* Defines the options of Entry ClassDecorator.