From 15e895f490b631a1c0f4180bfb65ce95fe0e5271 Mon Sep 17 00:00:00 2001 From: Diogo Cunha Date: Fri, 30 Nov 2018 10:36:16 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20added=20children=20as=20o?= =?UTF-8?q?ptional=20prop=20for=20Renderer?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Issues: https://github.com/diogofcunha/react-virtualized-tree/issues/77 --- index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/index.d.ts b/index.d.ts index caa6a22..cd6a29f 100644 --- a/index.d.ts +++ b/index.d.ts @@ -46,6 +46,7 @@ export interface RendererProps { onChange: (updateParams: NodeAction) => void; node: FlattenedNode; iconsClassNameMap?: T; + children?: React.ReactNode; } type DeletableRenderProps = RendererProps<{delete?: string}>;