From 10ccc53b89e9b7a1eb15a0e23e7be596d991b380 Mon Sep 17 00:00:00 2001 From: Shalitha Suranga Date: Sat, 22 Jul 2023 16:11:29 +0530 Subject: [PATCH] Support x,y with window.create in TypeScript --- src/api/window.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/window.ts b/src/api/window.ts index 5cecdc8..c1386da 100644 --- a/src/api/window.ts +++ b/src/api/window.ts @@ -3,7 +3,7 @@ import * as os from './os'; const draggableRegions: WeakMap = new WeakMap(); -export interface WindowOptions extends WindowSizeOptions { +export interface WindowOptions extends WindowSizeOptions, WindowPosOptions { title?: string; icon?: string; fullScreen?: boolean;