!9680 swiper组件 增加新接口indicatorInteractive

Merge pull request !9680 from yangziyong/swiper
This commit is contained in:
openharmony_ci 2024-04-01 06:03:42 +00:00 committed by Gitee
commit 26a3e13d5d
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -1882,6 +1882,17 @@ declare class SwiperAttribute extends CommonMethod<SwiperAttribute> {
* @since 12
*/
onContentDidScroll(handler: ContentDidScrollCallback): SwiperAttribute;
/**
* Setting whether the indicator is interactive.
*
* @param { boolean } value - Whether the indicator is interactive.
* @returns { SwiperAttribute }
* @syscap SystemCapability.ArkUI.ArkUI.Full
* @crossplatform
* @since 12
*/
indicatorInteractive(value: boolean): SwiperAttribute;
}
/**