Added missing blendStroke property to PieProps

blendStroke property exists in the pie component, yet is not recognized by the ts definition
This commit is contained in:
MichaelTsafrir
2018-12-04 16:45:20 +02:00
committed by GitHub
parent 24077f2cd0
commit b37be32b68
+1
View File
@@ -447,6 +447,7 @@ export interface PieProps extends EventAttributes, Partial<PresentationAttribute
} | React.ReactElement<any> | ContentRenderer<any> | boolean;
activeShape?: object | ContentRenderer<any> | React.ReactElement<any>;
activeIndex?: number | number[];
blendStroke?: boolean;
}
export class Pie extends React.Component<PieProps> { }