Skip to content

Commit

Permalink
fix(types): make socket.request writable (#697)
Browse files Browse the repository at this point in the history
Related: #696
  • Loading branch information
jonathanperret committed Feb 23, 2024
1 parent ff0fbfb commit 0efa04b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/socket.ts
Expand Up @@ -17,7 +17,7 @@ type ReadyState = "opening" | "open" | "closing" | "closed";
export class Socket extends EventEmitter {
public readonly protocol: number;
// TODO for the next major release: do not keep the reference to the first HTTP request, as it stays in memory
public readonly request: IncomingMessage;
public request: IncomingMessage;
public readonly remoteAddress: string;

public _readyState: ReadyState = "opening";
Expand Down

0 comments on commit 0efa04b

Please sign in to comment.