( template: string, variables: Record<string, string>, )
| 29 | }) |
| 30 | |
| 31 | export function interpolate( |
| 32 | template: string, |
| 33 | variables: Record<string, string>, |
| 34 | ): string { |
| 35 | return interpolateHttpVariables(template, variables) |
| 36 | } |
| 37 | |
| 38 | function interpolateAuth( |
| 39 | auth: HttpAuth, |
no test coverage detected