(url: string)
| 277 | }; |
| 278 | |
| 279 | const createSampleConfig = (url: string): AnyZodiosRequestOptions => ({ |
| 280 | method: "post", |
| 281 | url, |
| 282 | data: "123", |
| 283 | queries: { |
| 284 | sampleQueryParam: "456", |
| 285 | }, |
| 286 | headers: { |
| 287 | sampleHeader: "789", |
| 288 | }, |
| 289 | }); |
| 290 | |
| 291 | const createEmptySampleConfig = (url: string): AnyZodiosRequestOptions => ({ |
| 292 | method: "post", |
no outgoing calls
no test coverage detected