1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Clean duplicated ClusterId definition

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2020-11-19 18:48:08 +03:00
parent 8e9cd7baf1
commit 0d1b2ee68d

View File

@ -5,9 +5,9 @@ import { clusterStore } from "./cluster-store"
import { appEventBus } from "./event-bus";
import { broadcastMessage } from "../common/ipc";
import logger from "../main/logger";
import type { ClusterId } from "./cluster-store"
export type WorkspaceId = string;
export type ClusterId = string;
export interface WorkspaceStoreModel {
workspaces: WorkspaceModel[];