!13980 去除无效的接口参数

Merge pull request !13980 from 风扬/master
This commit is contained in:
openharmony_ci 2024-10-14 14:18:59 +00:00 committed by Gitee
commit af727e9066
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -6079,36 +6079,6 @@ declare enum BlurStyleActivePolicy {
ALWAYS_INACTIVE = 2,
}
/**
* Enumerates the blur types.
*
* @enum { number }
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @crossplatform
* @atomicservice
* @since 13
*/
declare enum BlurType {
/**
* The blur is applied within the window.
*
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @crossplatform
* @atomicservice
* @since 13
*/
WITHIN_WINDOW = 0,
/**
* The blur is applied behind the window.
*
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @crossplatform
* @atomicservice
* @since 13
*/
BEHIND_WINDOW = 1
}
/**
* enum color mode
*
@ -6324,7 +6294,7 @@ declare interface BackgroundBlurStyleOptions extends BlurStyleOptions {
* Defines the policy for activating the blur style.
*
* @type { ?BlurStyleActivePolicy }
* @default BlurStyleActivePolicy.FOLLOWS_WINDOW_ACTIVE_STATE
* @default BlurStyleActivePolicy.ALWAYS_ACTIVE
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @crossplatform
* @atomicservice
@ -6343,18 +6313,6 @@ declare interface BackgroundBlurStyleOptions extends BlurStyleOptions {
* @since 13
*/
inactiveColor?: ResourceColor;
/**
* Blur blending type.
*
* @type { ?BlurType }
* @default BlurType.WITHIN_WINDOW
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @crossplatform
* @atomicservice
* @since 13
*/
type?: BlurType;
}
/**
@ -6653,7 +6611,7 @@ declare interface BackgroundEffectOptions {
* Defines the policy for activating the blur style.
*
* @type { ?BlurStyleActivePolicy }
* @default BlurStyleActivePolicy.FOLLOWS_WINDOW_ACTIVE_STATE
* @default BlurStyleActivePolicy.ALWAYS_ACTIVE
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @crossplatform
* @atomicservice
@ -6672,18 +6630,6 @@ declare interface BackgroundEffectOptions {
* @since 13
*/
inactiveColor?: ResourceColor;
/**
* Blur blending type.
*
* @type { ?BlurType }
* @default BlurType.WITHIN_WINDOW
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @crossplatform
* @atomicservice
* @since 13
*/
type?: BlurType;
}
/**