mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
21 lines
448 B
TypeScript
21 lines
448 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";
|
|
|
|
export {
|
|
App,
|
|
EventBus,
|
|
ClusterFeature,
|
|
Interface,
|
|
Store,
|
|
Util,
|
|
};
|