From e7c1becbc6fa7c9c1345b99ca20fc3331dc756af Mon Sep 17 00:00:00 2001 From: Andrew Chou Date: Fri, 2 Aug 2024 15:02:34 -0400 Subject: [PATCH] fix: fix compatibility with verbatimModuleSyntax TS config option (#20) --- lib/types.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/types.ts b/lib/types.ts index d334b37..8c6790d 100644 --- a/lib/types.ts +++ b/lib/types.ts @@ -1,6 +1,6 @@ -import { ErrorObject } from 'serialize-error' -import { EventEmitter } from 'events' -import { Readable } from 'stream' +import type { ErrorObject } from 'serialize-error' +import type { EventEmitter } from 'events' +import type { Readable } from 'stream' export enum msgType { REQUEST = 0,