@widget-js/core 0.7.4 → 0.7.6
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 +6 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +4 -0
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1591,6 +1591,12 @@ var BrowserWindowApiImpl = class extends BaseApi {
|
|
|
1591
1591
|
getMinimumSize() {
|
|
1592
1592
|
return this.invokeMethod("getMinimumSize");
|
|
1593
1593
|
}
|
|
1594
|
+
close() {
|
|
1595
|
+
return this.invokeMethod("close");
|
|
1596
|
+
}
|
|
1597
|
+
setZoomFactor(factor) {
|
|
1598
|
+
return this.invokeMethod("setZoomFactor", factor);
|
|
1599
|
+
}
|
|
1594
1600
|
};
|
|
1595
1601
|
var BrowserWindowApi = new BrowserWindowApiImpl();
|
|
1596
1602
|
|