@k8slens/extensions 5.3.1-git.f8fa33ec8c.0 → 5.3.1-git.fa3708c879.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (89) hide show
  1. package/dist/src/common/catalog/catalog-entity.d.ts +51 -0
  2. package/dist/src/common/catalog-entities/kubernetes-cluster.d.ts +1 -2
  3. package/dist/src/common/ipc/extension-loader.ipc.d.ts +21 -0
  4. package/dist/src/common/ipc/index.d.ts +1 -0
  5. package/dist/src/common/k8s-api/endpoints/crd.api.d.ts +29 -28
  6. package/dist/src/common/vars.d.ts +1 -0
  7. package/dist/src/extensions/extension-api.js +918 -904
  8. package/dist/src/extensions/extension-loader/extension-loader.d.ts +8 -2
  9. package/dist/src/extensions/extension-loader/extension-loader.injectable.d.ts +2 -22
  10. package/dist/src/extensions/extensions.injectable.d.ts +2 -27
  11. package/dist/src/extensions/lens-main-extension.d.ts +2 -0
  12. package/dist/src/extensions/lens-renderer-extension.d.ts +6 -3
  13. package/dist/src/extensions/main-extensions.injectable.d.ts +5 -0
  14. package/dist/src/extensions/registries/base-registry.d.ts +1 -1
  15. package/dist/src/extensions/registries/index.d.ts +0 -3
  16. package/dist/src/extensions/renderer-extensions.injectable.d.ts +5 -0
  17. package/dist/src/main/menu/electron-menu-items.injectable.d.ts +2 -27
  18. package/dist/src/main/protocol-handler/lens-protocol-router-main/lens-protocol-router-main.d.ts +2 -1
  19. package/dist/src/main/protocol-handler/lens-protocol-router-main/lens-protocol-router-main.injectable.d.ts +2 -23
  20. package/dist/src/main/tray/tray-menu-items.injectable.d.ts +3 -0
  21. package/dist/src/main/tray/tray-menu-items.test.d.ts +1 -0
  22. package/dist/src/main/{tray.d.ts → tray/tray.d.ts} +4 -2
  23. package/dist/src/renderer/api/__tests__/catalog-entity-registry.test.d.ts +1 -1
  24. package/dist/src/renderer/api/catalog-entity-registry.d.ts +4 -0
  25. package/dist/src/renderer/api/catalog-entity.d.ts +1 -5
  26. package/dist/src/renderer/components/+catalog/catalog-entity-details.d.ts +3 -3
  27. package/dist/src/renderer/components/+catalog/catalog-entity-drawer-menu.d.ts +1 -2
  28. package/dist/src/renderer/components/+catalog/catalog-entity.store.d.ts +4 -4
  29. package/dist/src/renderer/components/+catalog/catalog.d.ts +5 -6
  30. package/dist/src/{extensions/registries/welcome-menu-registry.d.ts → renderer/components/+catalog/helpers.d.ts} +6 -8
  31. package/dist/src/renderer/components/+extensions/attempt-install/attempt-install.d.ts +2 -1
  32. package/dist/src/renderer/components/+extensions/attempt-install/attempt-install.injectable.d.ts +2 -25
  33. package/dist/src/renderer/components/+extensions/attempt-install/unpack-extension/unpack-extension.d.ts +2 -1
  34. package/dist/src/renderer/components/+extensions/attempt-install/unpack-extension/unpack-extension.injectable.d.ts +2 -25
  35. package/dist/src/renderer/components/+extensions/attempt-install-by-info/attempt-install-by-info.d.ts +2 -1
  36. package/dist/src/renderer/components/+extensions/attempt-install-by-info/attempt-install-by-info.injectable.d.ts +2 -23
  37. package/dist/src/renderer/components/+extensions/attempt-installs/attempt-installs.d.ts +2 -1
  38. package/dist/src/renderer/components/+extensions/attempt-installs/attempt-installs.injectable.d.ts +2 -23
  39. package/dist/src/renderer/components/+extensions/confirm-uninstall-extension/confirm-uninstall-extension.d.ts +3 -2
  40. package/dist/src/renderer/components/+extensions/confirm-uninstall-extension/confirm-uninstall-extension.injectable.d.ts +2 -24
  41. package/dist/src/renderer/components/+extensions/disable-extension/disable-extension.d.ts +2 -1
  42. package/dist/src/renderer/components/+extensions/disable-extension/disable-extension.injectable.d.ts +2 -24
  43. package/dist/src/renderer/components/+extensions/enable-extension/enable-extension.d.ts +2 -1
  44. package/dist/src/renderer/components/+extensions/enable-extension/enable-extension.injectable.d.ts +2 -24
  45. package/dist/src/renderer/components/+extensions/get-base-registry-url/get-base-registry-url.d.ts +2 -1
  46. package/dist/src/renderer/components/+extensions/get-base-registry-url/get-base-registry-url.injectable.d.ts +2 -3
  47. package/dist/src/renderer/components/+extensions/install-from-input/install-from-input.d.ts +2 -1
  48. package/dist/src/renderer/components/+extensions/install-from-input/install-from-input.injectable.d.ts +2 -23
  49. package/dist/src/renderer/components/+extensions/install-from-select-file-dialog/install-from-select-file-dialog.d.ts +2 -1
  50. package/dist/src/renderer/components/+extensions/install-from-select-file-dialog/install-from-select-file-dialog.injectable.d.ts +2 -23
  51. package/dist/src/renderer/components/+extensions/install-on-drop/install-on-drop.d.ts +2 -1
  52. package/dist/src/renderer/components/+extensions/install-on-drop/install-on-drop.injectable.d.ts +2 -23
  53. package/dist/src/renderer/components/+extensions/uninstall-extension/uninstall-extension.d.ts +2 -1
  54. package/dist/src/renderer/components/+extensions/uninstall-extension/uninstall-extension.injectable.d.ts +2 -24
  55. package/dist/src/renderer/components/+extensions/user-extensions/user-extensions.injectable.d.ts +2 -27
  56. package/dist/src/renderer/components/+welcome/welcome-banner-items/welcome-banner-items.injectable.d.ts +3 -0
  57. package/dist/src/renderer/components/+welcome/welcome-menu-items/get-welcome-menu-items.d.ts +27 -0
  58. package/dist/src/renderer/components/+welcome/welcome-menu-items/welcome-menu-items.injectable.d.ts +3 -0
  59. package/dist/src/renderer/components/+welcome/welcome.d.ts +1 -3
  60. package/dist/src/renderer/components/checkbox/checkbox.d.ts +0 -1
  61. package/dist/src/renderer/components/dock/terminal.d.ts +1 -1
  62. package/dist/src/renderer/components/kube-object-menu/dependencies/api-manager.injectable.d.ts +2 -23
  63. package/dist/src/renderer/components/kube-object-menu/dependencies/cluster-name.injectable.d.ts +2 -6
  64. package/dist/src/renderer/components/kube-object-menu/dependencies/cluster.injectable.d.ts +2 -3
  65. package/dist/src/renderer/components/kube-object-menu/dependencies/edit-resource-tab.injectable.d.ts +2 -2
  66. package/dist/src/renderer/components/kube-object-menu/dependencies/hide-details.injectable.d.ts +2 -2
  67. package/dist/src/renderer/components/kube-object-menu/dependencies/kube-object-menu-items/get-kube-object-menu-items.d.ts +2 -5
  68. package/dist/src/renderer/components/kube-object-menu/dependencies/kube-object-menu-items/kube-object-menu-items.injectable.d.ts +8 -23
  69. package/dist/src/renderer/components/kube-object-menu/dependencies/kube-object-menu-items/kube-object-menu-registry.injectable.d.ts +2 -2
  70. package/dist/src/renderer/components/layout/close-button.d.ts +25 -0
  71. package/dist/src/renderer/components/layout/top-bar/top-bar-items/top-bar-items.injectable.d.ts +3 -0
  72. package/dist/src/renderer/components/layout/{__tests__/topbar-win-linux.test.d.ts → top-bar/top-bar-win-linux.test.d.ts} +0 -0
  73. package/dist/src/renderer/components/layout/{topbar.d.ts → top-bar/top-bar.d.ts} +1 -4
  74. package/dist/src/renderer/components/layout/{__tests__/topbar.test.d.ts → top-bar/top-bar.test.d.ts} +0 -0
  75. package/dist/src/renderer/components/menu/menu-actions.d.ts +1 -1
  76. package/dist/src/renderer/components/monaco-editor/monaco-editor.d.ts +1 -1
  77. package/dist/src/renderer/{initializers/welcome-menu-registry.d.ts → components/switch/__tests__/switch.test.d.ts} +1 -1
  78. package/dist/src/renderer/components/switch/form-switcher.d.ts +3 -0
  79. package/dist/src/renderer/components/switch/index.d.ts +1 -0
  80. package/dist/src/{extensions/registries/topbar-registry.d.ts → renderer/components/switch/switch.d.ts} +4 -9
  81. package/dist/src/renderer/components/switch/switcher.d.ts +4 -1
  82. package/dist/src/renderer/initializers/index.d.ts +0 -1
  83. package/dist/src/renderer/protocol-handler/bind-protocol-add-route-handlers/bind-protocol-add-route-handlers.d.ts +2 -1
  84. package/dist/src/renderer/protocol-handler/bind-protocol-add-route-handlers/bind-protocol-add-route-handlers.injectable.d.ts +2 -23
  85. package/dist/src/renderer/protocol-handler/lens-protocol-router-renderer/lens-protocol-router-renderer.d.ts +2 -1
  86. package/dist/src/renderer/protocol-handler/lens-protocol-router-renderer/lens-protocol-router-renderer.injectable.d.ts +2 -23
  87. package/dist/src/renderer/theme.store.d.ts +0 -1
  88. package/package.json +1 -1
  89. package/dist/src/extensions/registries/welcome-banner-registry.d.ts +0 -38
@@ -76,9 +76,15 @@ export declare class ExtensionLoader {
76
76
  broadcastExtensions(): void;
77
77
  syncExtensions(extensions: [LensExtensionId, InstalledExtension][]): void;
78
78
  loadOnMain(): void;
79
- loadOnClusterManagerRenderer(): void;
79
+ loadOnClusterManagerRenderer(): {
80
+ isBundled: boolean;
81
+ loaded: Promise<void>;
82
+ }[];
80
83
  loadOnClusterRenderer(entity: KubernetesCluster): void;
81
- protected autoInitExtensions(register: (ext: LensExtension) => Promise<Disposer[]>): import("mobx").IReactionDisposer;
84
+ protected autoInitExtensions(register: (ext: LensExtension) => Promise<Disposer[]>): {
85
+ isBundled: boolean;
86
+ loaded: Promise<void>;
87
+ }[];
82
88
  protected requireExtension(extension: InstalledExtension): LensExtensionConstructor | null;
83
89
  getExtension(extId: LensExtensionId): InstalledExtension;
84
90
  getInstanceById<E extends LensExtension>(extId: LensExtensionId): E;
@@ -1,24 +1,4 @@
1
- /**
2
- * Copyright (c) 2021 OpenLens Authors
3
- *
4
- * Permission is hereby granted, free of charge, to any person obtaining a copy of
5
- * this software and associated documentation files (the "Software"), to deal in
6
- * the Software without restriction, including without limitation the rights to
7
- * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
8
- * the Software, and to permit persons to whom the Software is furnished to do so,
9
- * subject to the following conditions:
10
- *
11
- * The above copyright notice and this permission notice shall be included in all
12
- * copies or substantial portions of the Software.
13
- *
14
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
16
- * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
17
- * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
18
- * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20
- */
21
- import type { Injectable } from "@ogre-tools/injectable";
1
+ /// <reference types="@ogre-tools/injectable" />
22
2
  import { ExtensionLoader } from "./extension-loader";
23
- declare const extensionLoaderInjectable: Injectable<ExtensionLoader>;
3
+ declare const extensionLoaderInjectable: import("@ogre-tools/injectable").Injectable<import("@ogre-tools/injectable").InjectionToken<ExtensionLoader, unknown>, ExtensionLoader, unknown>;
24
4
  export default extensionLoaderInjectable;
@@ -1,28 +1,3 @@
1
- /**
2
- * Copyright (c) 2021 OpenLens Authors
3
- *
4
- * Permission is hereby granted, free of charge, to any person obtaining a copy of
5
- * this software and associated documentation files (the "Software"), to deal in
6
- * the Software without restriction, including without limitation the rights to
7
- * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
8
- * the Software, and to permit persons to whom the Software is furnished to do so,
9
- * subject to the following conditions:
10
- *
11
- * The above copyright notice and this permission notice shall be included in all
12
- * copies or substantial portions of the Software.
13
- *
14
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
16
- * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
17
- * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
18
- * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20
- */
21
- import { Injectable } from "@ogre-tools/injectable";
22
- import { IComputedValue } from "mobx";
23
- import type { LensExtension } from "./lens-extension";
24
- import type { ExtensionLoader } from "./extension-loader";
25
- declare const extensionsInjectable: Injectable<IComputedValue<LensExtension[]>, {
26
- extensionLoader: ExtensionLoader;
27
- }>;
1
+ /// <reference types="@ogre-tools/injectable" />
2
+ declare const extensionsInjectable: import("@ogre-tools/injectable").Injectable<import("@ogre-tools/injectable").InjectionToken<import("mobx").IComputedValue<import("./lens-extension").LensExtension[]>, unknown>, import("mobx").IComputedValue<import("./lens-extension").LensExtension[]>, unknown>;
28
3
  export default extensionsInjectable;
@@ -22,8 +22,10 @@ import { LensExtension } from "./lens-extension";
22
22
  import type { CatalogEntity } from "../common/catalog";
23
23
  import type { IObservableArray } from "mobx";
24
24
  import type { MenuRegistration } from "../main/menu/menu-registration";
25
+ import type { TrayMenuRegistration } from "../main/tray/tray-menu-registration";
25
26
  export declare class LensMainExtension extends LensExtension {
26
27
  appMenus: MenuRegistration[];
28
+ trayMenus: TrayMenuRegistration[];
27
29
  navigate(pageId?: string, params?: Record<string, any>, frameId?: number): Promise<void>;
28
30
  addCatalogSource(id: string, source: IObservableArray<CatalogEntity>): void;
29
31
  removeCatalogSource(id: string): void;
@@ -24,7 +24,10 @@ import type { CatalogEntity } from "../common/catalog";
24
24
  import type { Disposer } from "../common/utils";
25
25
  import { EntityFilter } from "../renderer/api/catalog-entity-registry";
26
26
  import { CategoryFilter } from "../renderer/api/catalog-category-registry";
27
+ import type { TopBarRegistration } from "../renderer/components/layout/top-bar/top-bar-registration";
27
28
  import type { KubernetesCluster } from "../common/catalog-entities";
29
+ import type { WelcomeMenuRegistration } from "../renderer/components/+welcome/welcome-menu-items/welcome-menu-registration";
30
+ import type { WelcomeBannerRegistration } from "../renderer/components/+welcome/welcome-banner-items/welcome-banner-registration";
28
31
  export declare class LensRendererExtension extends LensExtension {
29
32
  globalPages: registries.PageRegistration[];
30
33
  clusterPages: registries.PageRegistration[];
@@ -37,10 +40,10 @@ export declare class LensRendererExtension extends LensExtension {
37
40
  kubeObjectMenuItems: registries.KubeObjectMenuRegistration[];
38
41
  kubeWorkloadsOverviewItems: registries.WorkloadsOverviewDetailRegistration[];
39
42
  commands: registries.CommandRegistration[];
40
- welcomeMenus: registries.WelcomeMenuRegistration[];
41
- welcomeBanners: registries.WelcomeBannerRegistration[];
43
+ welcomeMenus: WelcomeMenuRegistration[];
44
+ welcomeBanners: WelcomeBannerRegistration[];
42
45
  catalogEntityDetailItems: registries.CatalogEntityDetailRegistration<CatalogEntity>[];
43
- topBarItems: registries.TopBarRegistration[];
46
+ topBarItems: TopBarRegistration[];
44
47
  navigate<P extends object>(pageId?: string, params?: P): Promise<void>;
45
48
  /**
46
49
  * Defines if extension is enabled for a given cluster. This method is only
@@ -0,0 +1,5 @@
1
+ /// <reference types="@ogre-tools/injectable" />
2
+ import type { IComputedValue } from "mobx";
3
+ import type { LensMainExtension } from "./lens-main-extension";
4
+ declare const mainExtensionsInjectable: import("@ogre-tools/injectable").Injectable<import("@ogre-tools/injectable").InjectionToken<IComputedValue<LensMainExtension[]>, unknown>, IComputedValue<LensMainExtension[]>, unknown>;
5
+ export default mainExtensionsInjectable;
@@ -19,7 +19,7 @@
19
19
  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20
20
  */
21
21
  import { Singleton } from "../../common/utils";
22
- import { LensExtension } from "../lens-extension";
22
+ import type { LensExtension } from "../lens-extension";
23
23
  export declare class BaseRegistry<T, I = T> extends Singleton {
24
24
  private items;
25
25
  constructor();
@@ -27,9 +27,6 @@ export * from "./kube-object-menu-registry";
27
27
  export * from "./kube-object-status-registry";
28
28
  export * from "./command-registry";
29
29
  export * from "./entity-setting-registry";
30
- export * from "./welcome-menu-registry";
31
- export * from "./welcome-banner-registry";
32
30
  export * from "./catalog-entity-detail-registry";
33
31
  export * from "./workloads-overview-detail-registry";
34
- export * from "./topbar-registry";
35
32
  export * from "./protocol-handler";
@@ -0,0 +1,5 @@
1
+ /// <reference types="@ogre-tools/injectable" />
2
+ import type { IComputedValue } from "mobx";
3
+ import type { LensRendererExtension } from "./lens-renderer-extension";
4
+ declare const rendererExtensionsInjectable: import("@ogre-tools/injectable").Injectable<import("@ogre-tools/injectable").InjectionToken<IComputedValue<LensRendererExtension[]>, unknown>, IComputedValue<LensRendererExtension[]>, unknown>;
5
+ export default rendererExtensionsInjectable;
@@ -1,28 +1,3 @@
1
- /**
2
- * Copyright (c) 2021 OpenLens Authors
3
- *
4
- * Permission is hereby granted, free of charge, to any person obtaining a copy of
5
- * this software and associated documentation files (the "Software"), to deal in
6
- * the Software without restriction, including without limitation the rights to
7
- * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
8
- * the Software, and to permit persons to whom the Software is furnished to do so,
9
- * subject to the following conditions:
10
- *
11
- * The above copyright notice and this permission notice shall be included in all
12
- * copies or substantial portions of the Software.
13
- *
14
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
16
- * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
17
- * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
18
- * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20
- */
21
- import { Injectable } from "@ogre-tools/injectable";
22
- import { IComputedValue } from "mobx";
23
- import type { LensMainExtension } from "../../extensions/lens-main-extension";
24
- import type { MenuRegistration } from "./menu-registration";
25
- declare const electronMenuItemsInjectable: Injectable<IComputedValue<MenuRegistration[]>, {
26
- extensions: IComputedValue<LensMainExtension[]>;
27
- }>;
1
+ /// <reference types="@ogre-tools/injectable" />
2
+ declare const electronMenuItemsInjectable: import("@ogre-tools/injectable").Injectable<import("@ogre-tools/injectable").InjectionToken<import("mobx").IComputedValue<import("./menu-registration").MenuRegistration[]>, unknown>, import("mobx").IComputedValue<import("./menu-registration").MenuRegistration[]>, unknown>;
28
3
  export default electronMenuItemsInjectable;
@@ -26,7 +26,7 @@ import type { ExtensionLoader } from "../../../extensions/extension-loader";
26
26
  export interface FallbackHandler {
27
27
  (name: string): Promise<boolean>;
28
28
  }
29
- export interface Dependencies {
29
+ interface Dependencies {
30
30
  extensionLoader: ExtensionLoader;
31
31
  }
32
32
  export declare class LensProtocolRouterMain extends proto.LensProtocolRouter {
@@ -54,3 +54,4 @@ export declare class LensProtocolRouterMain extends proto.LensProtocolRouter {
54
54
  */
55
55
  addMissingExtensionHandler(handler: FallbackHandler): void;
56
56
  }
57
+ export {};
@@ -1,25 +1,4 @@
1
- /**
2
- * Copyright (c) 2021 OpenLens Authors
3
- *
4
- * Permission is hereby granted, free of charge, to any person obtaining a copy of
5
- * this software and associated documentation files (the "Software"), to deal in
6
- * the Software without restriction, including without limitation the rights to
7
- * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
8
- * the Software, and to permit persons to whom the Software is furnished to do so,
9
- * subject to the following conditions:
10
- *
11
- * The above copyright notice and this permission notice shall be included in all
12
- * copies or substantial portions of the Software.
13
- *
14
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
16
- * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
17
- * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
18
- * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20
- */
21
- import type { Injectable } from "@ogre-tools/injectable";
22
- import type { Dependencies } from "./lens-protocol-router-main";
1
+ /// <reference types="@ogre-tools/injectable" />
23
2
  import { LensProtocolRouterMain } from "./lens-protocol-router-main";
24
- declare const lensProtocolRouterMainInjectable: Injectable<LensProtocolRouterMain, Dependencies>;
3
+ declare const lensProtocolRouterMainInjectable: import("@ogre-tools/injectable").Injectable<import("@ogre-tools/injectable").InjectionToken<LensProtocolRouterMain, unknown>, LensProtocolRouterMain, unknown>;
25
4
  export default lensProtocolRouterMainInjectable;
@@ -0,0 +1,3 @@
1
+ /// <reference types="@ogre-tools/injectable" />
2
+ declare const trayItemsInjectable: import("@ogre-tools/injectable").Injectable<import("@ogre-tools/injectable").InjectionToken<import("mobx").IComputedValue<import("./tray-menu-registration").TrayMenuRegistration[]>, unknown>, import("mobx").IComputedValue<import("./tray-menu-registration").TrayMenuRegistration[]>, unknown>;
3
+ export default trayItemsInjectable;
@@ -0,0 +1 @@
1
+ export {};
@@ -19,7 +19,9 @@
19
19
  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20
20
  */
21
21
  import { Tray } from "electron";
22
- import type { WindowManager } from "./window-manager";
22
+ import { IComputedValue } from "mobx";
23
+ import type { WindowManager } from "../window-manager";
24
+ import type { TrayMenuRegistration } from "./tray-menu-registration";
23
25
  export declare let tray: Tray;
24
26
  export declare function getTrayIcon(): string;
25
- export declare function initTray(windowManager: WindowManager): () => void;
27
+ export declare function initTray(windowManager: WindowManager, trayMenuItems: IComputedValue<TrayMenuRegistration[]>): () => void;
@@ -18,4 +18,4 @@
18
18
  * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19
19
  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20
20
  */
21
- import "../../../common/catalog-entities";
21
+ export {};
@@ -25,6 +25,10 @@ import { Disposer } from "../utils";
25
25
  import { CatalogRunEvent } from "../../common/catalog/catalog-run-event";
26
26
  export declare type EntityFilter = (entity: CatalogEntity) => any;
27
27
  export declare type CatalogEntityOnBeforeRun = (event: CatalogRunEvent) => void | Promise<void>;
28
+ export declare const catalogEntityRunContext: {
29
+ navigate: (url: string) => void;
30
+ setCommandPaletteContext: (entity?: CatalogEntity) => void;
31
+ };
28
32
  export declare class CatalogEntityRegistry {
29
33
  private categoryRegistry;
30
34
  protected activeEntityId: string | undefined;
@@ -18,10 +18,6 @@
18
18
  * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19
19
  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20
20
  */
21
- import type { CatalogEntity } from "../../common/catalog";
21
+ export { catalogEntityRunContext } from "./catalog-entity-registry";
22
22
  export { CatalogCategory, CatalogEntity } from "../../common/catalog";
23
23
  export type { CatalogEntityData, CatalogEntityKindData, CatalogEntityActionContext, CatalogEntityAddMenuContext, CatalogEntityAddMenu, CatalogEntityContextMenu, CatalogEntityContextMenuContext, } from "../../common/catalog";
24
- export declare const catalogEntityRunContext: {
25
- navigate: (url: string) => void;
26
- setCommandPaletteContext: (entity?: CatalogEntity) => void;
27
- };
@@ -20,14 +20,14 @@
20
20
  */
21
21
  import { Component } from "react";
22
22
  import type { CatalogCategory, CatalogEntity } from "../../../common/catalog";
23
- import type { CatalogEntityItem } from "./catalog-entity-item";
24
23
  interface Props<T extends CatalogEntity> {
25
- item: CatalogEntityItem<T> | null | undefined;
24
+ entity: T;
26
25
  hideDetails(): void;
26
+ onRun: () => void;
27
27
  }
28
28
  export declare class CatalogEntityDetails<T extends CatalogEntity> extends Component<Props<T>> {
29
29
  categoryIcon(category: CatalogCategory): JSX.Element;
30
- renderContent(item: CatalogEntityItem<T>): JSX.Element;
30
+ renderContent(entity: T): JSX.Element;
31
31
  render(): JSX.Element;
32
32
  }
33
33
  export {};
@@ -21,9 +21,8 @@
21
21
  import React from "react";
22
22
  import { MenuActionsProps } from "../menu/menu-actions";
23
23
  import type { CatalogEntity, CatalogEntityContextMenu } from "../../api/catalog-entity";
24
- import type { CatalogEntityItem } from "./catalog-entity-item";
25
24
  export interface CatalogEntityDrawerMenuProps<T extends CatalogEntity> extends MenuActionsProps {
26
- item: CatalogEntityItem<T> | null | undefined;
25
+ entity: T;
27
26
  }
28
27
  export declare class CatalogEntityDrawerMenu<T extends CatalogEntity> extends React.Component<CatalogEntityDrawerMenuProps<T>> {
29
28
  private contextMenu;
@@ -22,14 +22,14 @@ import { CatalogEntityRegistry } from "../../api/catalog-entity-registry";
22
22
  import type { CatalogEntity } from "../../api/catalog-entity";
23
23
  import { ItemStore } from "../../../common/item.store";
24
24
  import { CatalogCategory } from "../../../common/catalog";
25
- import { CatalogEntityItem } from "./catalog-entity-item";
26
- export declare class CatalogEntityStore extends ItemStore<CatalogEntityItem<CatalogEntity>> {
25
+ export declare class CatalogEntityStore extends ItemStore<CatalogEntity> {
27
26
  private registry;
28
27
  constructor(registry?: CatalogEntityRegistry);
29
28
  activeCategory?: CatalogCategory;
30
29
  selectedItemId?: string;
31
- get entities(): CatalogEntityItem<CatalogEntity<import("../../../common/catalog").CatalogEntityMetadata, import("../../../common/catalog").CatalogEntityStatus, import("../../../common/catalog").CatalogEntitySpec>>[];
32
- get selectedItem(): CatalogEntityItem<CatalogEntity<import("../../../common/catalog").CatalogEntityMetadata, import("../../../common/catalog").CatalogEntityStatus, import("../../../common/catalog").CatalogEntitySpec>>;
30
+ get entities(): CatalogEntity<import("../../../common/catalog").CatalogEntityMetadata, import("../../../common/catalog").CatalogEntityStatus, import("../../../common/catalog").CatalogEntitySpec>[];
31
+ get selectedItem(): CatalogEntity<import("../../../common/catalog").CatalogEntityMetadata, import("../../../common/catalog").CatalogEntityStatus, import("../../../common/catalog").CatalogEntitySpec>;
33
32
  watch(): import("../../../common/utils").ExtendableDisposer;
34
33
  loadAll(): Promise<any>;
34
+ onRun(entity: CatalogEntity): void;
35
35
  }
@@ -20,7 +20,6 @@
20
20
  */
21
21
  import React from "react";
22
22
  import { CatalogEntityStore } from "./catalog-entity.store";
23
- import type { CatalogEntityItem } from "./catalog-entity-item";
24
23
  import type { CatalogEntityContextMenu } from "../../api/catalog-entity";
25
24
  import { CatalogEntity } from "../../../common/catalog";
26
25
  import type { RouteComponentProps } from "react-router";
@@ -39,15 +38,15 @@ export declare class Catalog extends React.Component<Props> {
39
38
  };
40
39
  get routeActiveTab(): string;
41
40
  componentDidMount(): Promise<void>;
42
- addToHotbar(item: CatalogEntityItem<CatalogEntity>): void;
43
- removeFromHotbar(item: CatalogEntityItem<CatalogEntity>): void;
44
- onDetails: (item: CatalogEntityItem<CatalogEntity>) => void;
41
+ addToHotbar(entity: CatalogEntity): void;
42
+ removeFromHotbar(entity: CatalogEntity): void;
43
+ onDetails: (entity: CatalogEntity) => void;
45
44
  onMenuItemClick(menuItem: CatalogEntityContextMenu): void;
46
45
  get categories(): import("../../api/catalog-entity").CatalogCategory[];
47
46
  onTabChange: (tabId: string | null) => void;
48
47
  renderNavigation(): JSX.Element;
49
- renderItemMenu: (item: CatalogEntityItem<CatalogEntity>) => JSX.Element;
50
- renderName(item: CatalogEntityItem<CatalogEntity>): JSX.Element;
48
+ renderItemMenu: (entity: CatalogEntity) => JSX.Element;
49
+ renderName(entity: CatalogEntity): JSX.Element;
51
50
  renderList(): JSX.Element;
52
51
  render(): JSX.Element;
53
52
  }
@@ -18,11 +18,9 @@
18
18
  * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19
19
  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20
20
  */
21
- import { BaseRegistry } from "./base-registry";
22
- export interface WelcomeMenuRegistration {
23
- title: string | (() => string);
24
- icon: string;
25
- click: () => void | Promise<void>;
26
- }
27
- export declare class WelcomeMenuRegistry extends BaseRegistry<WelcomeMenuRegistration> {
28
- }
21
+ import React from "react";
22
+ import type { CatalogEntity } from "../../api/catalog-entity";
23
+ /**
24
+ * @param entity The entity to render badge labels for
25
+ */
26
+ export declare function getLabelBadges(entity: CatalogEntity, onClick?: (evt: React.MouseEvent<any, MouseEvent>) => void): JSX.Element[];
@@ -23,9 +23,10 @@ import type { ExtensionLoader } from "../../../../extensions/extension-loader";
23
23
  import type { LensExtensionId } from "../../../../extensions/lens-extension";
24
24
  import { InstallRequestValidated } from "./create-temp-files-and-validate/create-temp-files-and-validate";
25
25
  import type { InstallRequest } from "./install-request";
26
- export interface Dependencies {
26
+ interface Dependencies {
27
27
  extensionLoader: ExtensionLoader;
28
28
  uninstallExtension: (id: LensExtensionId) => Promise<boolean>;
29
29
  unpackExtension: (request: InstallRequestValidated, disposeDownloading: Disposer) => Promise<void>;
30
30
  }
31
31
  export declare const attemptInstall: ({ extensionLoader, uninstallExtension, unpackExtension }: Dependencies) => (request: InstallRequest, d?: ExtendableDisposer) => Promise<void>;
32
+ export {};
@@ -1,26 +1,3 @@
1
- /**
2
- * Copyright (c) 2021 OpenLens Authors
3
- *
4
- * Permission is hereby granted, free of charge, to any person obtaining a copy of
5
- * this software and associated documentation files (the "Software"), to deal in
6
- * the Software without restriction, including without limitation the rights to
7
- * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
8
- * the Software, and to permit persons to whom the Software is furnished to do so,
9
- * subject to the following conditions:
10
- *
11
- * The above copyright notice and this permission notice shall be included in all
12
- * copies or substantial portions of the Software.
13
- *
14
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
16
- * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
17
- * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
18
- * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20
- */
21
- import type { Injectable } from "@ogre-tools/injectable";
22
- import type { ExtendableDisposer } from "../../../../common/utils";
23
- import type { Dependencies } from "./attempt-install";
24
- import type { InstallRequest } from "./install-request";
25
- declare const attemptInstallInjectable: Injectable<(request: InstallRequest, d?: ExtendableDisposer) => Promise<void>, Dependencies>;
1
+ /// <reference types="@ogre-tools/injectable" />
2
+ declare const attemptInstallInjectable: import("@ogre-tools/injectable").Injectable<import("@ogre-tools/injectable").InjectionToken<(request: import("./install-request").InstallRequest, d?: import("../../../utils").ExtendableDisposer) => Promise<void>, unknown>, (request: import("./install-request").InstallRequest, d?: import("../../../utils").ExtendableDisposer) => Promise<void>, unknown>;
26
3
  export default attemptInstallInjectable;
@@ -21,7 +21,8 @@
21
21
  import type { InstallRequestValidated } from "../create-temp-files-and-validate/create-temp-files-and-validate";
22
22
  import { Disposer } from "../../../../../common/utils";
23
23
  import type { ExtensionLoader } from "../../../../../extensions/extension-loader";
24
- export interface Dependencies {
24
+ interface Dependencies {
25
25
  extensionLoader: ExtensionLoader;
26
26
  }
27
27
  export declare const unpackExtension: ({ extensionLoader }: Dependencies) => (request: InstallRequestValidated, disposeDownloading?: Disposer) => Promise<void>;
28
+ export {};
@@ -1,26 +1,3 @@
1
- /**
2
- * Copyright (c) 2021 OpenLens Authors
3
- *
4
- * Permission is hereby granted, free of charge, to any person obtaining a copy of
5
- * this software and associated documentation files (the "Software"), to deal in
6
- * the Software without restriction, including without limitation the rights to
7
- * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
8
- * the Software, and to permit persons to whom the Software is furnished to do so,
9
- * subject to the following conditions:
10
- *
11
- * The above copyright notice and this permission notice shall be included in all
12
- * copies or substantial portions of the Software.
13
- *
14
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
16
- * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
17
- * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
18
- * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20
- */
21
- import type { Injectable } from "@ogre-tools/injectable";
22
- import { Dependencies } from "./unpack-extension";
23
- import type { InstallRequestValidated } from "../create-temp-files-and-validate/create-temp-files-and-validate";
24
- import type { Disposer } from "../../../../../common/utils";
25
- declare const unpackExtensionInjectable: Injectable<(request: InstallRequestValidated, disposeDownloading?: Disposer) => Promise<void>, Dependencies>;
1
+ /// <reference types="@ogre-tools/injectable" />
2
+ declare const unpackExtensionInjectable: import("@ogre-tools/injectable").Injectable<import("@ogre-tools/injectable").InjectionToken<(request: import("../create-temp-files-and-validate/create-temp-files-and-validate").InstallRequestValidated, disposeDownloading?: import("../../../../utils").Disposer) => Promise<void>, unknown>, (request: import("../create-temp-files-and-validate/create-temp-files-and-validate").InstallRequestValidated, disposeDownloading?: import("../../../../utils").Disposer) => Promise<void>, unknown>;
26
3
  export default unpackExtensionInjectable;
@@ -5,8 +5,9 @@ export interface ExtensionInfo {
5
5
  version?: string;
6
6
  requireConfirmation?: boolean;
7
7
  }
8
- export interface Dependencies {
8
+ interface Dependencies {
9
9
  attemptInstall: (request: InstallRequest, d: ExtendableDisposer) => Promise<void>;
10
10
  getBaseRegistryUrl: () => Promise<string>;
11
11
  }
12
12
  export declare const attemptInstallByInfo: ({ attemptInstall, getBaseRegistryUrl }: Dependencies) => ({ name, version, requireConfirmation, }: ExtensionInfo) => Promise<void>;
13
+ export {};
@@ -1,24 +1,3 @@
1
- /**
2
- * Copyright (c) 2021 OpenLens Authors
3
- *
4
- * Permission is hereby granted, free of charge, to any person obtaining a copy of
5
- * this software and associated documentation files (the "Software"), to deal in
6
- * the Software without restriction, including without limitation the rights to
7
- * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
8
- * the Software, and to permit persons to whom the Software is furnished to do so,
9
- * subject to the following conditions:
10
- *
11
- * The above copyright notice and this permission notice shall be included in all
12
- * copies or substantial portions of the Software.
13
- *
14
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
16
- * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
17
- * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
18
- * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20
- */
21
- import type { Injectable } from "@ogre-tools/injectable";
22
- import { ExtensionInfo } from "./attempt-install-by-info";
23
- declare const attemptInstallByInfoInjectable: Injectable<(extensionInfo: ExtensionInfo) => Promise<void>, {}>;
1
+ /// <reference types="@ogre-tools/injectable" />
2
+ declare const attemptInstallByInfoInjectable: import("@ogre-tools/injectable").Injectable<import("@ogre-tools/injectable").InjectionToken<({ name, version, requireConfirmation, }: import("./attempt-install-by-info").ExtensionInfo) => Promise<void>, unknown>, ({ name, version, requireConfirmation, }: import("./attempt-install-by-info").ExtensionInfo) => Promise<void>, unknown>;
24
3
  export default attemptInstallByInfoInjectable;
@@ -1,5 +1,6 @@
1
1
  import type { InstallRequest } from "../attempt-install/install-request";
2
- export interface Dependencies {
2
+ interface Dependencies {
3
3
  attemptInstall: (request: InstallRequest) => Promise<void>;
4
4
  }
5
5
  export declare const attemptInstalls: ({ attemptInstall }: Dependencies) => (filePaths: string[]) => Promise<void>;
6
+ export {};
@@ -1,24 +1,3 @@
1
- /**
2
- * Copyright (c) 2021 OpenLens Authors
3
- *
4
- * Permission is hereby granted, free of charge, to any person obtaining a copy of
5
- * this software and associated documentation files (the "Software"), to deal in
6
- * the Software without restriction, including without limitation the rights to
7
- * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
8
- * the Software, and to permit persons to whom the Software is furnished to do so,
9
- * subject to the following conditions:
10
- *
11
- * The above copyright notice and this permission notice shall be included in all
12
- * copies or substantial portions of the Software.
13
- *
14
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
16
- * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
17
- * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
18
- * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20
- */
21
- import type { Injectable } from "@ogre-tools/injectable";
22
- import { Dependencies } from "./attempt-installs";
23
- declare const attemptInstallsInjectable: Injectable<(filePaths: string[]) => Promise<void>, Dependencies>;
1
+ /// <reference types="@ogre-tools/injectable" />
2
+ declare const attemptInstallsInjectable: import("@ogre-tools/injectable").Injectable<import("@ogre-tools/injectable").InjectionToken<(filePaths: string[]) => Promise<void>, unknown>, (filePaths: string[]) => Promise<void>, unknown>;
24
3
  export default attemptInstallsInjectable;
@@ -1,6 +1,7 @@
1
1
  import type { InstalledExtension } from "../../../../extensions/extension-discovery";
2
2
  import type { LensExtensionId } from "../../../../extensions/lens-extension";
3
- export interface Dependencies {
4
- uninstallExtension: (id: LensExtensionId) => Promise<void>;
3
+ interface Dependencies {
4
+ uninstallExtension: (id: LensExtensionId) => Promise<boolean>;
5
5
  }
6
6
  export declare const confirmUninstallExtension: ({ uninstallExtension }: Dependencies) => (extension: InstalledExtension) => Promise<void>;
7
+ export {};
@@ -1,25 +1,3 @@
1
- /**
2
- * Copyright (c) 2021 OpenLens Authors
3
- *
4
- * Permission is hereby granted, free of charge, to any person obtaining a copy of
5
- * this software and associated documentation files (the "Software"), to deal in
6
- * the Software without restriction, including without limitation the rights to
7
- * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
8
- * the Software, and to permit persons to whom the Software is furnished to do so,
9
- * subject to the following conditions:
10
- *
11
- * The above copyright notice and this permission notice shall be included in all
12
- * copies or substantial portions of the Software.
13
- *
14
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
16
- * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
17
- * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
18
- * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20
- */
21
- import type { Injectable } from "@ogre-tools/injectable";
22
- import { Dependencies } from "./confirm-uninstall-extension";
23
- import type { InstalledExtension } from "../../../../extensions/extension-discovery";
24
- declare const confirmUninstallExtensionInjectable: Injectable<(extension: InstalledExtension) => Promise<void>, Dependencies>;
1
+ /// <reference types="@ogre-tools/injectable" />
2
+ declare const confirmUninstallExtensionInjectable: import("@ogre-tools/injectable").Injectable<import("@ogre-tools/injectable").InjectionToken<(extension: import("../../../../extensions/extension-discovery").InstalledExtension) => Promise<void>, unknown>, (extension: import("../../../../extensions/extension-discovery").InstalledExtension) => Promise<void>, unknown>;
25
3
  export default confirmUninstallExtensionInjectable;
@@ -20,7 +20,8 @@
20
20
  */
21
21
  import type { LensExtensionId } from "../../../../extensions/lens-extension";
22
22
  import type { ExtensionLoader } from "../../../../extensions/extension-loader";
23
- export interface Dependencies {
23
+ interface Dependencies {
24
24
  extensionLoader: ExtensionLoader;
25
25
  }
26
26
  export declare const disableExtension: ({ extensionLoader }: Dependencies) => (id: LensExtensionId) => void;
27
+ export {};