From 65211fe144e7f905eba3fc77ccc8133b02e47d82 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Sat, 7 Jan 2023 23:40:08 -0500 Subject: [PATCH] *Ensure all imports are type imports --- src/plugin.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/plugin.ts b/src/plugin.ts index 2bf44cb..6b9efdc 100644 --- a/src/plugin.ts +++ b/src/plugin.ts @@ -1,7 +1,7 @@ import type { EventEmitter2 } from "eventemitter2"; -import { RPCMethod, RPCServer } from "./rpc.js"; -import { Logger } from "pino"; -import SSLManager from "./ssl.js"; +import type { RPCMethod, RPCServer } from "./rpc.js"; +import type { Logger } from "pino"; +import type SSLManager from "./ssl.js"; import type { HDKey } from "micro-ed25519-hdkey"; import type Config from "@lumeweb/cfg"; import type { ProtocolManager } from "./swarm.js";