mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
18 lines
426 B
TypeScript
18 lines
426 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 Registry from "./core-api/registries"
|
|
|
|
export {
|
|
EventBus,
|
|
Registry,
|
|
Store,
|
|
Util
|
|
}
|