@widget-js/core 24.1.1-beta.54 → 24.1.1-beta.55
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 +8 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +14 -5
- package/dist/index.d.ts +14 -5
- package/dist/index.js +8 -5
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -3220,9 +3220,6 @@ var FileApiImpl = class extends BaseApi {
|
|
|
3220
3220
|
async readDirectory(path, options) {
|
|
3221
3221
|
return this.invokeMethod("readDirectory", path, options);
|
|
3222
3222
|
}
|
|
3223
|
-
asyncdelete(filePath) {
|
|
3224
|
-
return this.invokeMethod("delete", filePath);
|
|
3225
|
-
}
|
|
3226
3223
|
async downloadUrl(options) {
|
|
3227
3224
|
return this.invokeMethod("downloadUrl", options);
|
|
3228
3225
|
}
|
|
@@ -3241,8 +3238,14 @@ var FileApiImpl = class extends BaseApi {
|
|
|
3241
3238
|
async getInfo(absoluteFilePath) {
|
|
3242
3239
|
return this.invokeMethod("getInfo", absoluteFilePath);
|
|
3243
3240
|
}
|
|
3244
|
-
async
|
|
3245
|
-
return this.invokeMethod("
|
|
3241
|
+
async showItemInFolder(fullPath) {
|
|
3242
|
+
return this.invokeMethod("showItemInFolder", fullPath);
|
|
3243
|
+
}
|
|
3244
|
+
async openPath(path) {
|
|
3245
|
+
return this.invokeMethod("openPath", path);
|
|
3246
|
+
}
|
|
3247
|
+
async trashItem(path) {
|
|
3248
|
+
return this.invokeMethod("trashItem", path);
|
|
3246
3249
|
}
|
|
3247
3250
|
};
|
|
3248
3251
|
var FileApi = new FileApiImpl();
|