SourceTermAnalysisSystem_vue/node_modules/geotiff/dist-module/source/remote.d.ts
2026-05-15 10:22:44 +08:00

28 lines
1.1 KiB
TypeScript

export function makeFetchSource(url: any, { headers, credentials, maxRanges, allowFullFile, ...blockOptions }?: {
headers?: {} | undefined;
credentials: any;
maxRanges?: number | undefined;
allowFullFile?: boolean | undefined;
}): any;
export function makeXHRSource(url: any, { headers, maxRanges, allowFullFile, ...blockOptions }?: {
headers?: {} | undefined;
maxRanges?: number | undefined;
allowFullFile?: boolean | undefined;
}): any;
export function makeHttpSource(url: any, { headers, maxRanges, allowFullFile, ...blockOptions }?: {
headers?: {} | undefined;
maxRanges?: number | undefined;
allowFullFile?: boolean | undefined;
}): any;
export function makeCustomSource(client: any, { headers, maxRanges, allowFullFile, ...blockOptions }?: {
headers?: {} | undefined;
maxRanges?: number | undefined;
allowFullFile?: boolean | undefined;
}): any;
/**
*
* @param {string} url
* @param {object} options
*/
export function makeRemoteSource(url: string, { forceXHR, ...clientOptions }?: object): any;
//# sourceMappingURL=remote.d.ts.map