@widget-js/core 0.11.8 → 0.11.10
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/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +65 -54
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -2124,8 +2124,8 @@ var FileApiImpl = class extends BaseApi {
|
|
|
2124
2124
|
delete(filePath) {
|
|
2125
2125
|
return this.invokeMethod("delete", filePath);
|
|
2126
2126
|
}
|
|
2127
|
-
downloadUrl(
|
|
2128
|
-
return this.invokeMethod("downloadUrl",
|
|
2127
|
+
downloadUrl(options) {
|
|
2128
|
+
return this.invokeMethod("downloadUrl", options);
|
|
2129
2129
|
}
|
|
2130
2130
|
exists(filePath) {
|
|
2131
2131
|
return this.invokeMethod("exists", filePath);
|