@widget-js/core 0.11.4 → 0.11.5
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 +6 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -2124,6 +2124,9 @@ var FileApiImpl = class extends BaseApi {
|
|
|
2124
2124
|
exists(filePath) {
|
|
2125
2125
|
return this.invokeMethod("exists", filePath);
|
|
2126
2126
|
}
|
|
2127
|
+
readFile(filePath) {
|
|
2128
|
+
return this.invokeMethod("readFile", filePath);
|
|
2129
|
+
}
|
|
2127
2130
|
};
|
|
2128
2131
|
var FileApi = new FileApiImpl();
|
|
2129
2132
|
// Annotate the CommonJS export names for ESM import in node:
|