From bea6aa17adef7ba86820548826c4caf2d1f80496 Mon Sep 17 00:00:00 2001 From: Richard Silverton Date: Wed, 8 Nov 2017 10:38:25 +0000 Subject: [PATCH] add missing animationDuration prop to typings --- types/recharts/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/recharts/index.d.ts b/types/recharts/index.d.ts index a98708952a..e0bc4a18ee 100644 --- a/types/recharts/index.d.ts +++ b/types/recharts/index.d.ts @@ -657,6 +657,7 @@ export interface TooltipProps { itemSorter?: RechartsFunction; isAnimationActive?: boolean; animationBegin?: number; + animationDuration?: number; animationEasing?: AnimationEasingType; } export class Tooltip extends React.Component {}