(response: Response)
| 173 | } |
| 174 | |
| 175 | async parseJsonResponse(response: Response) { |
| 176 | const json = await response.json(); |
| 177 | if (!response.ok) { |
| 178 | return Promise.reject(json); |
| 179 | } |
| 180 | return json; |
| 181 | } |
| 182 | |
| 183 | urlFor(path: string, options: Options) { |
| 184 | const params = []; |