@module-federation/enhanced
Version:
This package provides enhanced features for module federation.
11 lines (10 loc) • 397 B
TypeScript
import BaseWrapperPlugin from "./BaseWrapperPlugin.js";
import { sharePlugin } from "@module-federation/sdk";
//#region src/wrapper/SharePlugin.d.ts
type SharePluginOptions = sharePlugin.SharePluginOptions;
declare class SharePlugin extends BaseWrapperPlugin {
constructor(options: SharePluginOptions);
}
//#endregion
export { SharePlugin as default };
//# sourceMappingURL=SharePlugin.d.ts.map