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