()
| 184 | } |
| 185 | |
| 186 | export function createEmptyRequestParts(): { |
| 187 | auth: HttpAuth |
| 188 | body: string | null |
| 189 | bodyType: HttpBodyType |
| 190 | formData: HttpFormDataEntry[] |
| 191 | headers: HttpHeaderEntry[] |
| 192 | query: HttpQueryEntry[] |
| 193 | } { |
| 194 | return { |
| 195 | auth: { type: 'none' }, |
| 196 | body: null, |
| 197 | bodyType: 'none', |
| 198 | formData: [], |
| 199 | headers: [], |
| 200 | query: [], |
| 201 | } |
| 202 | } |
no outgoing calls
no test coverage detected