From 9f9701544b212c0de79fd33570b830ae9c3d8720 Mon Sep 17 00:00:00 2001 From: Roman Date: Mon, 6 Jul 2020 14:35:11 +0300 Subject: [PATCH] fix type imports Signed-off-by: Roman --- src/main/shell-session.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/shell-session.ts b/src/main/shell-session.ts index 8ab7baf8cc..7730ede3a2 100644 --- a/src/main/shell-session.ts +++ b/src/main/shell-session.ts @@ -5,7 +5,8 @@ import path from "path" import shellEnv from "shell-env" import { app } from "electron" import { Kubectl } from "./kubectl" -import { Cluster, ClusterPreferences } from "./cluster" +import { Cluster } from "./cluster" +import { ClusterPreferences } from "../common/cluster-store"; import { helmCli } from "./helm-cli" import { isWindows } from "../common/vars"; import { tracker } from "../common/tracker";