Remove clutter
This commit is contained in:
parent
81c7e0c984
commit
439de6a264
9 changed files with 12 additions and 16 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
import * as net from "node:net";
|
||||
|
||||
export interface PortReservation {
|
||||
interface PortReservation {
|
||||
port: number;
|
||||
release: () => void;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue