mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 23:19:30 +08:00
13 lines
474 B
Text
13 lines
474 B
Text
import '../_version.js';
|
|
/**
|
|
* A utility function that determines whether the current browser supports
|
|
* constructing a [`ReadableStream`](https://developer.mozilla.org/en-US/docs/Web/API/ReadableStream/ReadableStream)
|
|
* object.
|
|
*
|
|
* @return {boolean} `true`, if the current browser can successfully
|
|
* construct a `ReadableStream`, `false` otherwise.
|
|
*
|
|
* @private
|
|
*/
|
|
declare function canConstructReadableStream(): boolean;
|
|
export { canConstructReadableStream };
|