remote.d.ts 873 B

1234567891011121314151617181920212223
  1. export function makeFetchSource(url: any, { headers, credentials, maxRanges, allowFullFile, ...blockOptions }?: {
  2. headers?: {} | undefined;
  3. credentials: any;
  4. maxRanges?: number | undefined;
  5. allowFullFile?: boolean | undefined;
  6. }): any;
  7. export function makeXHRSource(url: any, { headers, maxRanges, allowFullFile, ...blockOptions }?: {
  8. headers?: {} | undefined;
  9. maxRanges?: number | undefined;
  10. allowFullFile?: boolean | undefined;
  11. }): any;
  12. export function makeHttpSource(url: any, { headers, maxRanges, allowFullFile, ...blockOptions }?: {
  13. headers?: {} | undefined;
  14. maxRanges?: number | undefined;
  15. allowFullFile?: boolean | undefined;
  16. }): any;
  17. /**
  18. *
  19. * @param {string} url
  20. * @param {object} options
  21. */
  22. export function makeRemoteSource(url: string, { forceXHR, ...clientOptions }?: object): any;
  23. //# sourceMappingURL=remote.d.ts.map