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,