* Returns info about the export. * @param {Module} module the module * @param {string} exportName the export * @returns {ExportInfo} info about the export
(module, exportName)
| 755 | * @returns {ExportInfo} info about the export |
| 756 | */ |
| 757 | getExportInfo(module, exportName) { |
| 758 | const mgm = this._getModuleGraphModule(module); |
| 759 | return mgm.exports.getExportInfo(exportName); |
| 760 | } |
| 761 | |
| 762 | /** |
| 763 | * Gets read only export info. |
no test coverage detected