import type Progress from '../../core/Progress'; import type { FetchOptions } from '../../utils/Fetcher'; /** * A plugin that routes HTTP calls to the Giro3D Fetcher. */ export default class FetchPlugin implements Progress { private readonly _opCounter; get loading(): boolean; get progress(): number; fetchData(url: RequestInfo | URL, options: FetchOptions): Promise; } //# sourceMappingURL=FetchPlugin.d.ts.map