mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
- Rename packageJsonInjectable -> applicationInformationInjectable - Add injectables for all sub items - Introduce storeMigrationVersionInjectable for BaseStores - Introduce extensionApiVersionInjectable - Use buildVersionInjectable in more places, such as in telemetry Signed-off-by: Sebastian Malton <sebastian@malton.name>
27 lines
527 B
TypeScript
27 lines
527 B
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
// APIs
|
|
import App from "./app";
|
|
import * as EventBus from "./event-bus";
|
|
import * as Store from "./stores";
|
|
import * as Util from "./utils";
|
|
import * as Catalog from "./catalog";
|
|
import * as Types from "./types";
|
|
import * as Proxy from "./proxy";
|
|
|
|
import logger from "../../common/logger";
|
|
|
|
export {
|
|
App,
|
|
EventBus,
|
|
Catalog,
|
|
Store,
|
|
Types,
|
|
Util,
|
|
logger,
|
|
Proxy,
|
|
};
|