From 83fc5ca975099a5a1ab31ca36effe75afc3edd5c Mon Sep 17 00:00:00 2001 From: Andy Date: Tue, 6 Mar 2018 11:49:38 -0800 Subject: [PATCH] react-truncate: Remove duplicate property (#24120) --- types/react-truncate/index.d.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/types/react-truncate/index.d.ts b/types/react-truncate/index.d.ts index 3c21c15150..15c72616c0 100644 --- a/types/react-truncate/index.d.ts +++ b/types/react-truncate/index.d.ts @@ -11,7 +11,6 @@ export interface TruncateProps extends React.HTMLProps { ellipsis?: React.ReactNode; trimWhitespace?: boolean; onTruncate?(isTruncated: boolean): void; - trimWhitespace?: boolean; } declare class Truncate extends React.Component { }