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

Removing unused modal registration

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2022-11-03 16:58:54 +03:00
parent f4febce32a
commit fa5ba3e4d6
3 changed files with 0 additions and 16 deletions

View File

@ -14,4 +14,3 @@ export type { CustomCategoryViewProps, CustomCategoryViewComponents, CustomCateg
export type { ShellEnvModifier, ShellEnvContext } from "../../main/shell-session/shell-env-modifier/shell-env-modifier-registration";
export type { KubeObjectContextMenuItem, KubeObjectOnContextMenuOpenContext, KubeObjectOnContextMenuOpen, KubeObjectHandlers, KubeObjectHandlerRegistration } from "../../renderer/kube-object/handler";
export type { TrayMenuRegistration } from "../../main/tray/tray-menu-registration";
export type { ClusterModalRegistration } from "../registries/modal-registry";

View File

@ -10,4 +10,3 @@ export * from "./page-menu-registry";
export * from "./entity-setting-registry";
export * from "./catalog-entity-detail-registry";
export * from "./protocol-handler";
export * from "./modal-registry";

View File

@ -1,14 +0,0 @@
/**
* Copyright (c) OpenLens Authors. All rights reserved.
* Licensed under MIT License. See LICENSE in root directory for more information.
*/
// Extensions-api -> Cluster frame custom modal registration
import type { IComputedValue } from "mobx";
export interface ClusterModalRegistration {
id: string;
Component: React.ComponentType;
visible: IComputedValue<boolean>;
}