You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* add new workflows for testing and version bumping; update README files for all packages ([a01c2a8](https://github.com/Cap-go/capacitor-plus/commit/a01c2a842c363c2aa58e5681210fa62fac8e5de5))
* add new workflows for testing and version bumping; update README files for all packages ([a01c2a8](https://github.com/Cap-go/capacitor-plus/commit/a01c2a842c363c2aa58e5681210fa62fac8e5de5))
* add new workflows for testing and version bumping; update README files for all packages ([a01c2a8](https://github.com/Cap-go/capacitor-plus/commit/a01c2a842c363c2aa58e5681210fa62fac8e5de5))
* add new workflows for testing and version bumping; update README files for all packages ([a01c2a8](https://github.com/Cap-go/capacitor-plus/commit/a01c2a842c363c2aa58e5681210fa62fac8e5de5))
Copy file name to clipboardExpand all lines: core/http.md
+17-6Lines changed: 17 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -261,7 +261,7 @@ Make a Http DELETE Request to a server using native libraries.
261
261
#### Blob
262
262
263
263
A file-like object of immutable, raw data. Blobs represent data that isn't necessarily in a JavaScript-native format. The <ahref="#file">File</a> interface is based on <ahref="#blob">Blob</a>, inheriting blob functionality and expanding it to support files on the user's system.
264
-
`Blob` class is a global reference for `require('node:buffer').Blob`
264
+
`Blob` class is a global reference for `import { <a href="#blob">Blob</a> } from 'node:buffer'`
265
265
https://nodejs.org/api/buffer.html#class-blob
266
266
267
267
| Prop | Type |
@@ -296,6 +296,8 @@ buffer as needed.
296
296
#### ReadableStream
297
297
298
298
This Streams API interface represents a readable stream of byte data. The Fetch API offers a concrete instance of a <ahref="#readablestream">ReadableStream</a> through the body property of a Response object.
299
+
`ReadableStream` class is a global reference for `import { <a href="#readablestream">ReadableStream</a> } from 'node:stream/web'`.
@@ -312,6 +314,9 @@ This Streams API interface represents a readable stream of byte data. The Fetch
312
314
313
315
#### ReadableStreamDefaultReader
314
316
317
+
<ahref="#readablestreamdefaultreader">`ReadableStreamDefaultReader`</a> class is a global reference for `import { <a href="#readablestreamdefaultreader">ReadableStreamDefaultReader</a> } from 'node:stream/web'`.
@@ -345,6 +350,8 @@ This Streams API interface represents a readable stream of byte data. The Fetch
345
350
#### WritableStream
346
351
347
352
This Streams API interface provides a standard abstraction for writing streaming data to a destination, known as a sink. This object comes with built-in backpressure and queuing.
353
+
`WritableStream` class is a global reference for `import { <a href="#writablestream">WritableStream</a> } from 'node:stream/web'`.
@@ -359,6 +366,8 @@ This Streams API interface provides a standard abstraction for writing streamin
359
366
#### WritableStreamDefaultWriter
360
367
361
368
This Streams API interface is the object returned by <ahref="#writablestream">WritableStream.getWriter</a>() and once created locks the < writer to the <ahref="#writablestream">WritableStream</a> ensuring that no other streams can write to the underlying sink.
369
+
`WritableStreamDefaultWriter` class is a global reference for `import { <a href="#writablestreamdefaultwriter">WritableStreamDefaultWriter</a> } from 'node:stream/web'`.
* add new workflows for testing and version bumping; update README files for all packages ([a01c2a8](https://github.com/Cap-go/capacitor-plus/commit/a01c2a842c363c2aa58e5681210fa62fac8e5de5))
0 commit comments