mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
20 lines
842 B
TypeScript
20 lines
842 B
TypeScript
// Lens-extensions api developer's kit
|
|
export type { LensExtensionRuntimeEnv } from "./lens-renderer-runtime"
|
|
|
|
// APIs
|
|
export * from "./lens-extension"
|
|
export * from "./lens-renderer-extension"
|
|
export { DynamicPageType, PageRegistry } from "./page-registry"
|
|
export { AppPreferenceRegistry } from "./app-preference-registry"
|
|
export { appEventBus } from "../common/event-bus"
|
|
export type { AppEvent } from "../common/event-bus"
|
|
export { Singleton } from "../common/utils"
|
|
|
|
// TODO: add more common re-usable UI components + refactor interfaces (Props -> ComponentProps)
|
|
export * from "../renderer/components/icon"
|
|
export * from "../renderer/components/checkbox"
|
|
export * from "../renderer/components/tooltip"
|
|
export * from "../renderer/components/button"
|
|
export * from "../renderer/components/tabs"
|
|
export * from "../renderer/components/badge"
|