export interface FetchLikeRequest { clone(): unknown; } export type FetchLikeInput = string | URL | FetchLikeRequest; export type FetchLike = { bivarianceHack(url: FetchLikeInput, init?: R): Promise; }['bivarianceHack'];