MikuMikuBeam/server/lib.ts
2025-02-26 08:38:04 +01:00

17 lines
361 B
TypeScript

export type ProxyProtocol = "http" | "https" | "socks4" | "socks5" | string;
export interface Proxy {
username?: string;
password?: string;
protocol: ProxyProtocol;
host: string;
port: number;
}
export type AttackMethod =
| "http_flood"
| "http_bypass"
| "http_slowloris"
| "tcp_flood"
| "udp_flood"
| "minecraft_ping";