mol_dump_lib 0.0.414 → 0.0.415
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/node.d.ts +52 -52
- package/package.json +1 -1
- package/web.d.ts +54 -52
- package/web.d.ts.map +1 -1
- package/web.deps.json +1 -1
- package/web.js +9 -3
- package/web.js.map +1 -1
- package/web.mjs +9 -3
package/web.js
CHANGED
|
@@ -4921,6 +4921,9 @@ var $;
|
|
|
4921
4921
|
json() {
|
|
4922
4922
|
return $mol_wire_sync(this.native).json();
|
|
4923
4923
|
}
|
|
4924
|
+
blob() {
|
|
4925
|
+
return $mol_wire_sync(this.native).blob();
|
|
4926
|
+
}
|
|
4924
4927
|
buffer() {
|
|
4925
4928
|
return $mol_wire_sync(this.native).arrayBuffer();
|
|
4926
4929
|
}
|
|
@@ -4940,9 +4943,6 @@ var $;
|
|
|
4940
4943
|
__decorate([
|
|
4941
4944
|
$mol_action
|
|
4942
4945
|
], $mol_fetch_response.prototype, "text", null);
|
|
4943
|
-
__decorate([
|
|
4944
|
-
$mol_action
|
|
4945
|
-
], $mol_fetch_response.prototype, "buffer", null);
|
|
4946
4946
|
__decorate([
|
|
4947
4947
|
$mol_action
|
|
4948
4948
|
], $mol_fetch_response.prototype, "xml", null);
|
|
@@ -4989,6 +4989,9 @@ var $;
|
|
|
4989
4989
|
static json(input, init) {
|
|
4990
4990
|
return this.success(input, init).json();
|
|
4991
4991
|
}
|
|
4992
|
+
static blob(input, init) {
|
|
4993
|
+
return this.success(input, init).blob();
|
|
4994
|
+
}
|
|
4992
4995
|
static buffer(input, init) {
|
|
4993
4996
|
return this.success(input, init).buffer();
|
|
4994
4997
|
}
|
|
@@ -5017,6 +5020,9 @@ var $;
|
|
|
5017
5020
|
__decorate([
|
|
5018
5021
|
$mol_action
|
|
5019
5022
|
], $mol_fetch, "json", null);
|
|
5023
|
+
__decorate([
|
|
5024
|
+
$mol_action
|
|
5025
|
+
], $mol_fetch, "blob", null);
|
|
5020
5026
|
__decorate([
|
|
5021
5027
|
$mol_action
|
|
5022
5028
|
], $mol_fetch, "buffer", null);
|