From 0b4d5c6447bbd21f4492c5bee1626b1b7d960397 Mon Sep 17 00:00:00 2001 From: danisharora099 Date: Fri, 15 Sep 2023 17:03:30 +0530 Subject: [PATCH] use type import --- examples/web-chat/src/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/web-chat/src/utils.ts b/examples/web-chat/src/utils.ts index 3a3eef2..7254dc6 100644 --- a/examples/web-chat/src/utils.ts +++ b/examples/web-chat/src/utils.ts @@ -1,5 +1,5 @@ import type { Peer } from "@libp2p/interface-peer-store"; -import { IFilter, ILightPush, IStore } from "@waku/interfaces"; +import type { IFilter, ILightPush, IStore } from "@waku/interfaces"; export async function handleCatch( promise?: Promise