This repository has been archived on 2025-03-09. You can view files and clone it, but cannot push or open issues or pull requests.
httpmitm-old/proxy.d.ts
2024-08-12 18:58:31 -04:00

23 lines
437 B
TypeScript

interface ServerConfig {
filters: FilterType[],
filterPath?: string,
proxyPath?: string,
reverseProxyUrl?: string
}
interface FilterInfo {
tls: boolean,
host: string,
path?: string // Only valid if tls is false
}
declare global {
type FilterType = "http"|"https"
}
declare type FilterFunction = (filterInfo: FilterInfo)=>Promise<boolean>|boolean
export { ServerConfig, FilterInfo, FilterFunction }