| 317 | |
| 318 | // just some simple abstractions so that we can use this in both a node and browser context |
| 319 | export interface ApiFetcher { |
| 320 | fetch(path: string, opts: FetcherOpts): Promise<FetchResponse>; |
| 321 | } |
| 322 | |
| 323 | export interface FetcherHeaders { |
| 324 | [index: string]: string, |
no outgoing calls
no test coverage detected