Files
sgauthier 6e64e138e2
All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
planning
2024-10-14 09:15:30 +02:00

23 lines
873 B
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;
/**
*
* @param {string} url
* @param {object} options
*/
export function makeRemoteSource(url: string, { forceXHR, ...clientOptions }?: object): any;
//# sourceMappingURL=remote.d.ts.map