mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
19 lines
726 B
TypeScript
19 lines
726 B
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
// @experimental
|
|
export {
|
|
afterApplicationIsLoadedInjectionToken,
|
|
beforeApplicationIsLoadingInjectionToken,
|
|
beforeElectronIsReadyInjectionToken,
|
|
onLoadOfApplicationInjectionToken,
|
|
} from "./start-main-application/runnable-tokens/phases";
|
|
export { createApplication } from "./create-app";
|
|
export type { CreateApplication, Application, ApplicationConfig } from "../common/create-app";
|
|
export * as Mobx from "mobx";
|
|
export * as mainExtensionApi from "../extensions/main-api";
|
|
export * as commonExtensionApi from "../extensions/common-api";
|
|
export * as Pty from "node-pty";
|