UNPKG

@giro3d/giro3d

Version:

A JS/WebGL framework for 3D geospatial data visualization

12 lines 440 B
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<Response>; } //# sourceMappingURL=FetchPlugin.d.ts.map