From 8dcbb8e3a5d4cd9a8b547a52f0eaa82e35f5c270 Mon Sep 17 00:00:00 2001 From: Pho Huynh Date: Fri, 8 Sep 2017 10:19:00 +0700 Subject: [PATCH] Change placeholder type from `Node` to `any` --- types/react-lazyload/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/react-lazyload/index.d.ts b/types/react-lazyload/index.d.ts index 3c4ae99805..ed90c3f973 100644 --- a/types/react-lazyload/index.d.ts +++ b/types/react-lazyload/index.d.ts @@ -15,7 +15,7 @@ export interface LazyLoadProps { children?: JSX.Element; throttle?: number | boolean; debounce?: number | boolean; - placeholder?: Node; + placeholder?: any; unmountIfInvisible?: boolean; }