Server Fixes

This commit is contained in:
2022-07-02 23:17:48 -04:00
parent 7607f8821c
commit a3663ec196
1667 changed files with 803877 additions and 2 deletions
+7
View File
@@ -0,0 +1,7 @@
/// <reference types="node" />
import { Readable } from 'stream';
export interface ProxyResponse {
statusCode: number;
buffered: Buffer;
}
export default function parseProxyResponse(socket: Readable): Promise<ProxyResponse>;