(input: GenerationOptions.Input | undefined)
| 131 | } |
| 132 | |
| 133 | export const generationOptions = (input: GenerationOptions.Input | undefined) => |
| 134 | input === undefined ? undefined : GenerationOptions.make(input) |
| 135 | |
| 136 | export const httpOptions = (input: HttpOptionsInput | undefined) => { |
| 137 | if (input === undefined) return input |
no test coverage detected