| 6 | import { installHeadroomTransport } from "./transport.js"; |
| 7 | |
| 8 | export interface HeadroomOpenCodePluginOptions { |
| 9 | proxyUrl?: string; |
| 10 | project?: string; |
| 11 | backend?: string; |
| 12 | debug?: boolean; |
| 13 | } |
| 14 | |
| 15 | function normalizeProxyUrl(url: string): string { |
| 16 | return url.replace(/\/+$/, ""); |
nothing calls this directly
no outgoing calls
no test coverage detected