Remove clutter

This commit is contained in:
Andras Schmelczer 2026-04-26 18:19:01 +01:00
parent 81c7e0c984
commit 439de6a264
9 changed files with 12 additions and 16 deletions

View file

@ -8,7 +8,7 @@
* constructor using Object.defineProperty so we don't need conflicting
* get/set accessor pairs.
*/
export class ManagedWebSocket implements WebSocket {
class ManagedWebSocket implements WebSocket {
public static readonly CONNECTING = WebSocket.CONNECTING;
public static readonly OPEN = WebSocket.OPEN;
public static readonly CLOSING = WebSocket.CLOSING;

View file

@ -1,6 +1,6 @@
import * as net from "node:net";
export interface PortReservation {
interface PortReservation {
port: number;
release: () => void;
}