1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/packages/technical-features/react-application/index.ts
Gabriel 34ca6509b8 chore: extract tokens
Signed-off-by: Gabriel <gaccettola@mirantis.com>
2023-06-01 19:03:09 +02:00

17 lines
1.2 KiB
TypeScript

export { renderInjectionToken } from "./src/render-application/render.injectable";
export type { Render } from "./src/render-application/render.injectable";
export { reactApplicationChildrenInjectionToken } from "./src/react-application/react-application-children-injection-token";
export type { ReactApplicationChildren } from "./src/react-application/react-application-children-injection-token";
export { reactApplicationHigherOrderComponentInjectionToken } from "./src/react-application/react-application-higher-order-component-injection-token";
export type { ReactApplicationHigherOrderComponent } from "./src/react-application/react-application-higher-order-component-injection-token";
export { clusterFrameChildComponentInjectionToken } from "./src/cluster-frame/cluster-frame-child-component-injection-token";
export type { ClusterFrameChildComponent } from "./src/cluster-frame/cluster-frame-child-component-injection-token";
export { rootFrameChildComponentInjectionToken } from "./src/root-frame/root-frame-child-component-injection-token";
export type { RootFrameChildComponent } from "./src/root-frame/root-frame-child-component-injection-token";
export { reactApplicationFeature } from "./src/feature";