From 37a0a0407795497c8d347d6ab699fa030fa5f269 Mon Sep 17 00:00:00 2001 From: AndreyTsvetkov Date: Sat, 2 Sep 2017 16:43:18 +0300 Subject: [PATCH] added disableCompensation property --- types/react-sticky/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/react-sticky/index.d.ts b/types/react-sticky/index.d.ts index 23fd51d196..85743b9945 100644 --- a/types/react-sticky/index.d.ts +++ b/types/react-sticky/index.d.ts @@ -17,6 +17,7 @@ export interface StickyProps { topOffset?: number; bottomOffset?: number; onStickyStateChange?(isSticky: boolean): void; + disableCompensation?: boolean; } export const Sticky: React.ComponentClass;