mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
22 lines
550 B
TypeScript
22 lines
550 B
TypeScript
// Lens-extensions api developer's kit
|
|
export type { LensExtensionRuntimeEnv } from "./lens-runtime";
|
|
export * from "./lens-main-extension"
|
|
export * from "./lens-renderer-extension"
|
|
|
|
// APIs
|
|
import * as EventBus from "./core-api/event-bus"
|
|
import * as Store from "./core-api/stores"
|
|
import * as Util from "./core-api/utils"
|
|
import * as App from "./core-api/app"
|
|
import * as Registry from "./core-api/registries"
|
|
import * as ClusterFeature from "./core-api/cluster-feature"
|
|
|
|
export {
|
|
App,
|
|
ClusterFeature,
|
|
EventBus,
|
|
Registry,
|
|
Store,
|
|
Util
|
|
}
|