From a1204cfc1ba7bdfdda83d4dc12171d94364159d0 Mon Sep 17 00:00:00 2001 From: bendtherules Date: Tue, 27 Aug 2019 22:58:47 +0530 Subject: [PATCH] lib - export utils from main export --- src/index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index eb231a0..b26bb20 100644 --- a/src/index.ts +++ b/src/index.ts @@ -4,11 +4,13 @@ import { findNodeByComponentRef, findNodeByComponentName } from "./findNode"; +import * as Utils from "./utils"; export { traverse, traverseGenerator, findNodeByComponent, findNodeByComponentRef, - findNodeByComponentName + findNodeByComponentName, + Utils };