We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
transparent
WindowOptions
1 parent 5edda4b commit 08c1c5cCopy full SHA for 08c1c5c
.changes/api-transparent-window.md
@@ -0,0 +1,5 @@
1
+---
2
+"api": patch
3
4
+
5
+Adds `transparent?: boolean` to the `WindowOptions` interface.
tooling/api/src/window.ts
@@ -687,6 +687,8 @@ export interface WindowOptions {
687
title?: string
688
/** Whether the window is in fullscreen mode or not. */
689
fullscreen?: boolean
690
+ /** Whether the window is transparent or not. */
691
+ transparent?: boolean
692
/** Whether the window should be maximized upon creation or not. */
693
maximized?: boolean
694
/** Whether the window should be immediately visible upon creation or not. */
0 commit comments