()
| 117 | } |
| 118 | |
| 119 | async getExchanges(): Promise<ParsedHttpExchange[]> { |
| 120 | const response = await fetch(`${this.proxyUrl}/exchanges`, { method: "GET" }); |
| 121 | return await response.json(); |
| 122 | } |
| 123 | |
| 124 | async stop(skipWritingCache?: boolean): Promise<void> { |
| 125 | const url = skipWritingCache |