From ea3b44d2c18d52235102fced209ce43315081f83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=BF=B7=E6=B8=A1?= Date: Thu, 11 Apr 2019 13:00:59 +0800 Subject: [PATCH] [react-dom] render has wrong signature fixes #23527 --- types/react-dom/index.d.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/types/react-dom/index.d.ts b/types/react-dom/index.d.ts index 19c842f5a2..1af1647a3b 100644 --- a/types/react-dom/index.d.ts +++ b/types/react-dom/index.d.ts @@ -91,11 +91,4 @@ export interface Renderer { container: Element | null, callback?: () => void ): Component | Element | void; - - ( - parentComponent: Component | Array>, - element: SFCElement, - container: Element, - callback?: () => void - ): void; }