import type { fetch } from '@gibme/fetch/browser'; declare global { interface JQueryStatic { /** * cross-fetch wrapper with additional options */ fetch(url: string, init?: fetch.Init): Promise; } interface Window { fetch: typeof fetch; } } export {};