@widget-js/core 0.11.12 → 0.11.15
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 +3 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +5 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -2142,6 +2142,9 @@ var FileApiImpl = class extends BaseApi {
|
|
|
2142
2142
|
async getInfo(absoluteFilePath) {
|
|
2143
2143
|
return this.invokeMethod("getInfo", absoluteFilePath);
|
|
2144
2144
|
}
|
|
2145
|
+
async showSystemFolder(absoluteFolderPath) {
|
|
2146
|
+
return this.invokeMethod("showSystemFolder", absoluteFolderPath);
|
|
2147
|
+
}
|
|
2145
2148
|
};
|
|
2146
2149
|
var FileApi = new FileApiImpl();
|
|
2147
2150
|
// Annotate the CommonJS export names for ESM import in node:
|