From 6f2f279b5f77da11a8066711532a3a04f13cd311 Mon Sep 17 00:00:00 2001 From: Oliver Stadie Date: Tue, 11 Apr 2017 12:05:52 +0200 Subject: [PATCH] ADD missing property to type From the swiper API docs: freeModeMomentumVelocityRatio number 1 Higher value produces larger momentum velocity after you release slider --- types/swiper/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/swiper/index.d.ts b/types/swiper/index.d.ts index e74fc923f9..ad382ecda2 100644 --- a/types/swiper/index.d.ts +++ b/types/swiper/index.d.ts @@ -28,6 +28,7 @@ interface SwiperOptions { freeMode?: boolean; freeModeMomentum?: boolean; freeModeMomentumRatio?: number; + freeModeMomentumVelocityRatio?: number; freeModeMomentumBounce?: boolean; freeModeMomentumBounceRatio?: number; freeModeMinimumVelocity?: number;