From 0193d663d5876720026777746f256a65c6ccad34 Mon Sep 17 00:00:00 2001 From: Sean Warren Date: Sun, 11 Feb 2024 22:43:21 -0800 Subject: [PATCH] fix: export PathObject type --- src/utils/filter.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/filter.ts b/src/utils/filter.ts index b09b4118..b387c7ed 100644 --- a/src/utils/filter.ts +++ b/src/utils/filter.ts @@ -1,7 +1,7 @@ import uniqBy from "lodash/uniqBy"; // Entity or object with path property -interface PathObject { +export interface PathObject { path: string; }