From 43f304427399bed476a596c86e838dbe6260efd9 Mon Sep 17 00:00:00 2001 From: Alex Andreev Date: Wed, 2 Sep 2020 17:11:46 +0300 Subject: [PATCH] Using import type statement (#793) Signed-off-by: Alex Andreev --- src/main/window-manager.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/window-manager.ts b/src/main/window-manager.ts index 99bb9da052..6f7ab6478a 100644 --- a/src/main/window-manager.ts +++ b/src/main/window-manager.ts @@ -1,8 +1,9 @@ -import { ClusterId, clusterStore } from "../common/cluster-store"; +import { clusterStore } from "../common/cluster-store"; import { BrowserWindow, dialog, ipcMain, shell, webContents } from "electron" import windowStateKeeper from "electron-window-state" import { observable } from "mobx"; import { initMenu } from "./menu"; +import type { ClusterId } from "../common/cluster-store"; export class WindowManager { protected mainView: BrowserWindow;