@widget-js/core 0.11.7 → 0.11.9

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 CHANGED
@@ -2103,6 +2103,12 @@ var LogApi = new LogApiImpl();
2103
2103
 
2104
2104
  // src/api/FileApi.ts
2105
2105
  var FileApiImpl = class extends BaseApi {
2106
+ getPictureMetadata(filePath) {
2107
+ return this.invokeMethod("getPictureMetadata", filePath);
2108
+ }
2109
+ move(form, to) {
2110
+ return this.invokeMethod("move", form, to);
2111
+ }
2106
2112
  getFileType(filePath) {
2107
2113
  return this.invokeMethod("getFileType", filePath);
2108
2114
  }