From 627a204ee8c589792ccf06bf4a8078c3a7c0b0ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8B=8F=E6=9D=B0=E8=B1=AA?= Date: Tue, 29 Aug 2023 20:24:25 +0800 Subject: [PATCH] feat: update ScrollTimelineOption orientation type --- types/wx/lib.wx.component.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/wx/lib.wx.component.d.ts b/types/wx/lib.wx.component.d.ts index 65cc465..b948e36 100644 --- a/types/wx/lib.wx.component.d.ts +++ b/types/wx/lib.wx.component.d.ts @@ -630,8 +630,8 @@ declare namespace WechatMiniprogram.Component { interface ScrollTimelineOption { /** 指定滚动元素的选择器(只支持 scroll-view),该元素滚动时会驱动动画的进度 */ scrollSource: string - /** 指定滚动的方向。有效值为 horizontal 或 vertical */ - orientation?: string + /** 指定滚动的方向。有效值为 horizontal 或 vertical,默认值 vertical */ + orientation?: 'horizontal' | 'vertical' /** 指定开始驱动动画进度的滚动偏移量,单位 px */ startScrollOffset: number /** 指定停止驱动动画进度的滚动偏移量,单位 px */