workbox-core
Version:
This module is used by a number of the other Workbox modules to share common code.
13 lines (12 loc) • 450 B
TypeScript
import '../_version.js';
/**
* A utility function that determines whether the current browser supports
* constructing a new `Response` from a `response.body` stream.
*
* @return {boolean} `true`, if the current browser can successfully
* construct a `Response` from a `response.body` stream, `false` otherwise.
*
* @private
*/
declare function canConstructResponseFromBodyStream(): boolean;
export { canConstructResponseFromBodyStream };