mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* Export more things for the extension API Signed-off-by: Sebastian Malton <sebastian@malton.name> * Provide more insight into the dist-tag computation Signed-off-by: Sebastian Malton <sebastian@malton.name> * Fix type errors Signed-off-by: Sebastian Malton <sebastian@malton.name> --------- Signed-off-by: Sebastian Malton <sebastian@malton.name>
24 lines
929 B
TypeScript
24 lines
929 B
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
import loggerInjectable from "../../common/logger.injectable";
|
|
import { asLegacyGlobalForExtensionApi } from "../as-legacy-globals-for-extension-api/as-legacy-global-object-for-extension-api";
|
|
|
|
// APIs
|
|
export { App } from "./app";
|
|
export * as EventBus from "./event-bus";
|
|
export * as Store from "./stores";
|
|
export * as Util from "./utils";
|
|
export * as Catalog from "./catalog";
|
|
export * as Types from "./types";
|
|
export * as Proxy from "./proxy";
|
|
|
|
export type { Logger } from "../../common/logger";
|
|
export type { LensExtension, LensExtensionManifest } from "../lens-extension";
|
|
export type { InstalledExtension } from "../extension-discovery/extension-discovery";
|
|
export type { PackageJson } from "type-fest";
|
|
|
|
export const logger = asLegacyGlobalForExtensionApi(loggerInjectable);
|