From 1cf7a72cb6be7ccee2647c9aa57218c4abeb490c Mon Sep 17 00:00:00 2001 From: Paul Colleoni Date: Tue, 31 Oct 2017 00:04:35 +0900 Subject: [PATCH] [react] added backgroundSize to the CSSProperties (#20862) --- types/react/index.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/types/react/index.d.ts b/types/react/index.d.ts index 77356b922b..b2dc6057cc 100644 --- a/types/react/index.d.ts +++ b/types/react/index.d.ts @@ -926,6 +926,11 @@ declare namespace React { */ backgroundRepeat?: CSSWideKeyword | any; + /** + * Defines the size of the background images + */ + backgroundSize?: CSSWideKeyword | any; + /** * Obsolete - spec retired, not implemented. */