Skip to content

Commit 08c1c5c

Browse files
authored
fix(api): missing transparent flag on WindowOptions (#1764)
1 parent 5edda4b commit 08c1c5c

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.changes/api-transparent-window.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"api": patch
3+
---
4+
5+
Adds `transparent?: boolean` to the `WindowOptions` interface.

tooling/api/src/window.ts

+2
Original file line numberDiff line numberDiff line change
@@ -687,6 +687,8 @@ export interface WindowOptions {
687687
title?: string
688688
/** Whether the window is in fullscreen mode or not. */
689689
fullscreen?: boolean
690+
/** Whether the window is transparent or not. */
691+
transparent?: boolean
690692
/** Whether the window should be maximized upon creation or not. */
691693
maximized?: boolean
692694
/** Whether the window should be immediately visible upon creation or not. */

0 commit comments

Comments
 (0)