export type Url = string export type Fetcher = (url: Url, options: any) => Promise export type Options = { noCache?: boolean } & any