!11870 ComponentV2增加组件冻结接口

Merge pull request !11870 from 181******72/master
This commit is contained in:
openharmony_ci 2024-06-06 12:33:35 +00:00 committed by Gitee
commit 31434ff8b0
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

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.