From 8200aa5c918e6f86a17cb5fc46ef1bb57cad6758 Mon Sep 17 00:00:00 2001 From: Sasha Date: Thu, 23 Feb 2023 14:11:41 +0100 Subject: [PATCH] remove export --- src/WakuProvider.tsx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/WakuProvider.tsx b/src/WakuProvider.tsx index 8a87cf2..ab34cfe 100644 --- a/src/WakuProvider.tsx +++ b/src/WakuProvider.tsx @@ -7,6 +7,7 @@ import type { FullNodeOptions, LightNodeOptions, RelayNodeOptions, + ReactChildrenProps, } from "./types"; import { useCreateFullNode, @@ -37,10 +38,6 @@ const WakuContext = React.createContext>({ export const useWaku = (): WakuContextType => React.useContext(WakuContext) as WakuContextType; -type ReactChildrenProps = { - children?: React.ReactNode; -}; - type ProviderProps = ReactChildrenProps & BootstrapNodeOptions; /**