1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/src/extensions/core-api/index.ts
Jari Kolehmainen 4d8b7b0853
Move catalog to top-level module in extension api (#2527)
Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
2021-04-16 12:28:11 +03:00

23 lines
497 B
TypeScript

// Lens-extensions api developer's kit
export * from "../lens-main-extension";
export * from "../lens-renderer-extension";
// APIs
import * as App from "./app";
import * as EventBus from "./event-bus";
import * as Store from "./stores";
import * as Util from "./utils";
import * as ClusterFeature from "./cluster-feature";
import * as Interface from "../interfaces";
import * as Catalog from "./catalog";
export {
App,
EventBus,
Catalog,
ClusterFeature,
Interface,
Store,
Util,
};