first commit

This commit is contained in:
2025-10-11 10:47:07 +08:00
Unverified
commit 392a6a604c
6725 changed files with 1379477 additions and 0 deletions

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>;