UNPKG

245 BPlain TextView Raw
1/**
2 * Standard interface that can be used for fetching URLs
3 */
4export default interface IUrlFetcher {
5 /**
6 * Fetch a URL
7 *
8 * @param url URL to fetch
9 * @param options Any options
10 */
11 fetchUrl (url: string, options: any): any
12}