mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 01:22:49 +00:00
10 lines
291 B
JavaScript
10 lines
291 B
JavaScript
//#region src/getUsedExports.ts
|
|
function getUsedExports(webpackRequire, sharedName) {
|
|
const usedExports = webpackRequire.federation.usedExports;
|
|
if (!usedExports) return;
|
|
return usedExports[sharedName];
|
|
}
|
|
|
|
//#endregion
|
|
export { getUsedExports };
|
|
//# sourceMappingURL=getUsedExports.js.map
|