mirror of https://github.com/webpack/webpack.git
15 lines
367 B
JavaScript
15 lines
367 B
JavaScript
import * as counter from "./counter";
|
|
export { counter };
|
|
import * as counter2 from "./counter2";
|
|
export { counter2 };
|
|
|
|
export const D = 1;
|
|
export const E = 1;
|
|
|
|
export const exportsInfo = {
|
|
D: __webpack_exports_info__.D.used,
|
|
E: __webpack_exports_info__.E.used,
|
|
counter: __webpack_exports_info__.counter.used,
|
|
counter2: __webpack_exports_info__.counter2.used,
|
|
};
|