From b37be32b6890ab5e1269ba03d4cfbabb7a530848 Mon Sep 17 00:00:00 2001 From: MichaelTsafrir Date: Tue, 4 Dec 2018 16:45:20 +0200 Subject: [PATCH] Added missing blendStroke property to PieProps blendStroke property exists in the pie component, yet is not recognized by the ts definition --- 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 34e3cbcb88..6426e0de5f 100644 --- a/types/recharts/index.d.ts +++ b/types/recharts/index.d.ts @@ -447,6 +447,7 @@ export interface PieProps extends EventAttributes, Partial | ContentRenderer | boolean; activeShape?: object | ContentRenderer | React.ReactElement; activeIndex?: number | number[]; + blendStroke?: boolean; } export class Pie extends React.Component { }