mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
16 lines
526 B
TypeScript
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",
|
|
}
|