(input: HttpOptionsInput | undefined)
| 134 | input === undefined ? undefined : GenerationOptions.make(input) |
| 135 | |
| 136 | export const httpOptions = (input: HttpOptionsInput | undefined) => { |
| 137 | if (input === undefined) return input |
| 138 | return HttpOptions.make(input) |
| 139 | } |
| 140 | |
| 141 | export interface Interface { |
| 142 | /** |
no test coverage detected