An abstract class for implementing fetcher functionality that asynchronously retrieves data.
Example
classMyFetcherextendsFetcher { async*fetch(options: FetchOptions): AsyncGenerator { // Implementation to asynchronously retrieve data using the provided options. } }
An abstract class for implementing fetcher functionality that asynchronously retrieves data.
Example