1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/src/common/ipc-messages.ts
Roman f474a20904 cluster-store refactoring -- part 3
Signed-off-by: Roman <ixrock@gmail.com>
2020-07-07 20:46:46 +03:00

16 lines
526 B
TypeScript

// IPC messages (all channels)
export enum ClusterIpcMessage {
CLUSTER_ADD = "cluster-add",
CLUSTER_STOP = "cluster-stop",
CLUSTER_REFRESH = "cluster-refresh",
CLUSTER_REMOVE = "cluster-remove",
CLUSTER_REMOVE_WORKSPACE = "cluster-remove-all-from-workspace",
CLUSTER_EVENTS = "cluster-events-count",
FEATURE_INSTALL = "cluster-feature-install",
FEATURE_UPGRADE = "cluster-feature-upgrade",
FEATURE_REMOVE = "cluster-feature-remove",
ICON_SAVE = "cluster-icon-save",
ICON_RESET = "cluster-icon-reset",
}