canConstructResponseFromBodyStream.d.ts 450 B

123456789101112
  1. import '../_version.js';
  2. /**
  3. * A utility function that determines whether the current browser supports
  4. * constructing a new `Response` from a `response.body` stream.
  5. *
  6. * @return {boolean} `true`, if the current browser can successfully
  7. * construct a `Response` from a `response.body` stream, `false` otherwise.
  8. *
  9. * @private
  10. */
  11. declare function canConstructResponseFromBodyStream(): boolean;
  12. export { canConstructResponseFromBodyStream };