(source: SourceType)
| 249 | } |
| 250 | |
| 251 | async function fetchAndProcess<T>(source: SourceType) { |
| 252 | const data = await fetchFromSource() |
| 253 | return processFetchData<T>(data, source, key) |
| 254 | } |
| 255 | |
| 256 | let resultPromise: Promise<FetchPayload<T>> |
| 257 |
no test coverage detected