serwist
Version:
A Swiss Army knife for service workers.
11 lines • 469 B
TypeScript
/**
* A utility function that determines whether the current browser supports
* constructing a new response from a `response.body` stream.
*
* @returns `true`, if the current browser can successfully construct
* a response from a `response.body` stream, `false` otherwise.
* @private
*/
declare function canConstructResponseFromBodyStream(): boolean;
export { canConstructResponseFromBodyStream };
//# sourceMappingURL=canConstructResponseFromBodyStream.d.ts.map