From 1767e153a1b406496a45708c3047fc75f3accd34 Mon Sep 17 00:00:00 2001 From: Diogo Cunha Date: Tue, 7 May 2019 19:26:21 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20added=20nodes=20prop=20to?= =?UTF-8?q?=20FilteringContainer?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/index.d.ts b/index.d.ts index 88ec3d5..bfa9ca3 100644 --- a/index.d.ts +++ b/index.d.ts @@ -96,6 +96,7 @@ interface GroupRendererProps { } export interface FilteringContainerProps { + nodes: Node[]; children: (params: {nodes: Node[]; nodeParentMappings: {[id: NodeId]: NodeId[]}}) => JSX.Element; debouncer?: (func: (...p: any[]) => any, timeout: number) => void; groups?: {[g: string]: Group};