fix: Linter warnings

This commit is contained in:
Joachim Van Herwegen
2021-11-05 15:59:28 +01:00
parent d317215e08
commit 9f0973b039
5 changed files with 5 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
import type WebSocket from 'ws';
import type { WebSocket } from 'ws';
import { AsyncHandler } from '../util/handlers/AsyncHandler';
import type { HttpRequest } from './HttpRequest';

View File

@@ -1,6 +1,6 @@
import type { Server } from 'http';
import type { Socket } from 'net';
import type WebSocket from 'ws';
import type { WebSocket } from 'ws';
import { Server as WebSocketServer } from 'ws';
import type { HttpRequest } from './HttpRequest';
import type { HttpServerFactory } from './HttpServerFactory';