0
0
mirror of https://github.com/sammwyy/MikuMikuBeam.git synced 2025-06-29 18:21:13 +00:00
MikuMikuBeam/server/lib.ts

17 lines
344 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"
| "minecraft_ping";