mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 09:42:55 +00:00
11 lines
307 B
JavaScript
11 lines
307 B
JavaScript
|
|
//#region src/getUsedExports.ts
|
|
function getUsedExports(webpackRequire, sharedName) {
|
|
const usedExports = webpackRequire.federation.usedExports;
|
|
if (!usedExports) return;
|
|
return usedExports[sharedName];
|
|
}
|
|
|
|
//#endregion
|
|
exports.getUsedExports = getUsedExports;
|
|
//# sourceMappingURL=getUsedExports.cjs.map
|