changed some stuff

This commit is contained in:
Bojan Kucera 2025-06-09 18:12:41 -04:00
parent 8a588816c4
commit b896d3f698
2 changed files with 2 additions and 1 deletions

View file

@ -2,6 +2,7 @@
export type HttpMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
export interface ProxyInfo {
source?: string;
protocol: 'http' | 'https' | 'socks4' | 'socks5';
host: string;
port: number;