mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 12:01:00 +00:00
16 lines
566 B
TypeScript
16 lines
566 B
TypeScript
import * as runtimeCore from "@module-federation/runtime-tools/runtime-core";
|
|
import { ModuleFederationRuntimePlugin } from "@module-federation/runtime-tools/runtime-core";
|
|
|
|
//#region src/index.d.ts
|
|
declare global {
|
|
var __VERSION__: string;
|
|
var _FEDERATION_RUNTIME_CORE: typeof runtimeCore;
|
|
var _FEDERATION_RUNTIME_CORE_FROM: {
|
|
version: string;
|
|
name: string;
|
|
};
|
|
}
|
|
declare function injectExternalRuntimeCorePlugin(): ModuleFederationRuntimePlugin;
|
|
//#endregion
|
|
export { injectExternalRuntimeCorePlugin as default };
|
|
//# sourceMappingURL=index.d.ts.map
|