@rnacanvas/app-object 17.3.0 → 17.4.0
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/README.md +4 -0
- package/dist/index.js +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -241,8 +241,12 @@ The Start page interface.
|
|
|
241
241
|
// open the Start page
|
|
242
242
|
app.startPage.open();
|
|
243
243
|
|
|
244
|
+
app.startPage.isOpen(); // true
|
|
245
|
+
|
|
244
246
|
// close the Start page
|
|
245
247
|
app.startPage.close();
|
|
248
|
+
|
|
249
|
+
app.startPage.isOpen(); // false
|
|
246
250
|
```
|
|
247
251
|
|
|
248
252
|
### `exportSVG()`
|