| 2 | Type definitions for flows. Sync with mitmproxy/tools/web/app.py. |
| 3 | */ |
| 4 | interface _Flow { |
| 5 | id: string; |
| 6 | intercepted: boolean; |
| 7 | is_replay: "request" | "response" | undefined; |
| 8 | type: string; |
| 9 | modified: boolean; |
| 10 | marked: string; |
| 11 | comment: string; |
| 12 | timestamp_created: number; |
| 13 | client_conn: Client; |
| 14 | server_conn?: Server; |
| 15 | error?: Error; |
| 16 | } |
| 17 | |
| 18 | export type Flow = HTTPFlow | TCPFlow | UDPFlow | DNSFlow; |
| 19 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…