From 7604dc78be4493967ce105ca2054d876a12814f8 Mon Sep 17 00:00:00 2001 From: Ananda Umamil Date: Wed, 11 Mar 2020 13:18:59 +0700 Subject: [PATCH] fix: missing ScrollBehavior#stop in index.d.ts (#365) --- types/index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/types/index.d.ts b/types/index.d.ts index 7bb569e..ffe62ad 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -57,6 +57,8 @@ declare module 'scroll-behavior' { target: ScrollPosition | string, ) => void; + stop(): void; + startIgnoringScrollEvents(): void; stopIgnoringScrollEvents(): void;