/** * @fileoverview Web polyfill definitions. * @license Apache-2.0 */ /** Fetches a file. */ export function fetch(url: string): Promise<{ arrayBuffer(): Promise; text(): Promise; json(): Promise; // eslint-disable-line @typescript-eslint/no-explicit-any }>;