From 67b263b8dc6637635e88f5828d38c9290ebde26a Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Sun, 27 Aug 2023 21:26:40 +0200 Subject: [PATCH] remove unused imports --- src/_utils.ts | 2 +- src/listen.ts | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/_utils.ts b/src/_utils.ts index d08ee85..fe5824d 100644 --- a/src/_utils.ts +++ b/src/_utils.ts @@ -1,7 +1,7 @@ import { networkInterfaces } from "node:os"; import { relative } from "pathe"; import { colors } from "consola/utils"; -import { ListenURL, ListenOptions, GetURLOptions } from "./types"; +import { ListenOptions } from "./types"; export function getNetworkInterfaces(includeIPV6?: boolean): string[] { const addrs = new Set(); diff --git a/src/listen.ts b/src/listen.ts index 7007945..da0da35 100644 --- a/src/listen.ts +++ b/src/listen.ts @@ -21,7 +21,6 @@ import type { GetURLOptions, } from "./types"; import { - formatAddress, formatURL, getNetworkInterfaces, isLocalhost,