Skip to content

Commit

Permalink
chore: add missing type import
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Jul 17, 2023
1 parent f7a4f3b commit 448d3c9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/listen.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import { createServer } from "node:http";
import {
Server as HTTPServer,
createServer as createHTTPSServer,
} from "node:https";
import type { Server as HTTPServer } from "node:https";
import { createServer as createHTTPSServer } from "node:https";
import { promisify } from "node:util";
import type { RequestListener, Server } from "node:http";
import type { AddressInfo } from "node:net";
Expand Down
2 changes: 2 additions & 0 deletions src/types.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import type { Server } from "node:http";
import type { Server as HTTPServer } from "node:https";
import type { GetPortInput } from "get-port-please";

export interface Certificate {
Expand Down

0 comments on commit 448d3c9

Please sign in to comment.