@todesktop/shared 7.65.0 → 7.66.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/lib/desktopify2.d.ts +4 -0
- package/package.json +1 -1
- package/src/desktopify2.ts +4 -0
package/lib/desktopify2.d.ts
CHANGED
|
@@ -106,6 +106,10 @@ export interface DesktopifyAppWindow {
|
|
|
106
106
|
* Allows user to `Cmd+F` or `Edit>Find` to search for text on page
|
|
107
107
|
*/
|
|
108
108
|
isFindInPageEnabled?: boolean;
|
|
109
|
+
/**
|
|
110
|
+
* Whether the window is in kiosk mode
|
|
111
|
+
*/
|
|
112
|
+
kiosk?: boolean;
|
|
109
113
|
/**
|
|
110
114
|
* Inital visibility of window
|
|
111
115
|
*/
|
package/package.json
CHANGED
package/src/desktopify2.ts
CHANGED
|
@@ -208,6 +208,10 @@ export interface DesktopifyAppWindow {
|
|
|
208
208
|
* Allows user to `Cmd+F` or `Edit>Find` to search for text on page
|
|
209
209
|
*/
|
|
210
210
|
isFindInPageEnabled?: boolean;
|
|
211
|
+
/**
|
|
212
|
+
* Whether the window is in kiosk mode
|
|
213
|
+
*/
|
|
214
|
+
kiosk?: boolean;
|
|
211
215
|
/**
|
|
212
216
|
* Inital visibility of window
|
|
213
217
|
*/
|