/** * Copyright 2024 Mia srl * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * SPDX-License-Identifier: Apache-2.0 */ import { IMicrofrontendIntegrator } from '@mia-platform/console-sdk-microfrontend'; import { QiankunProps } from 'vite-plugin-qiankun/dist/helper'; export type ConsoleLifecycleFunction = (isConnectedToConsole: boolean, consoleSDK: IMicrofrontendIntegrator | undefined) => void; export type IViteParams = { mount: ConsoleLifecycleFunction; unmount: ConsoleLifecycleFunction; update?: () => void; bootstrap?: () => void; }; type SDKParams = { consoleSDK: IMicrofrontendIntegrator | undefined; isConnectedToConsole: boolean; }; export declare function getSDK(props: QiankunProps): SDKParams; export declare const decorateLifecycleFunction: (lifecycleFunction: IViteParams[keyof IViteParams]) => (props: QiankunProps) => void; export default function renderViteMicroApp({ mount, unmount }: IViteParams): void; export {}; //# sourceMappingURL=renderViteMicroApp.d.ts.map