Urara-Blog/node_modules/.pnpm-store/v3/files/9f/2bfe3c7bb914595fef31cab1dd98c656265f9525caab85b75245bcc0ea123466eec84216a17e3fcb65a7ed54bae15148dd7d5d4f63bbc02006ea77c6c9dafc
2022-08-14 01:14:53 +08:00

14 lines
539 B
Text

import './_version.js';
/**
* This is a utility method that determines whether the current browser supports
* the features required to create streamed responses. Currently, it checks if
* [`ReadableStream`](https://developer.mozilla.org/en-US/docs/Web/API/ReadableStream/ReadableStream)
* can be created.
*
* @return {boolean} `true`, if the current browser meets the requirements for
* streaming responses, and `false` otherwise.
*
* @memberof workbox-streams
*/
declare function isSupported(): boolean;
export { isSupported };