From f9734ca32a032fa7199df9bf47396a3315cb6a53 Mon Sep 17 00:00:00 2001 From: Jan Paepke Date: Fri, 27 Mar 2020 16:04:27 +0100 Subject: [PATCH] corrected type for `stickyDuration` It should actually be number. :) --- index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index a95c697..f6e7ad2 100644 --- a/index.d.ts +++ b/index.d.ts @@ -49,7 +49,7 @@ export interface TooltipProps { unmountHTMLWhenHide?: boolean; size?: Size; sticky?: boolean; - stickyDuration?: boolean; + stickyDuration?: number; beforeShown?: () => void; shown?: () => void; beforeHidden?: () => void;