I was taking a look to the swiper.esm.js from Swiper.js (source copied here for reference), and the first line is
export { default as Swiper, default } from './core/core.js';
while the following are of the form:
export { default as Virtual } from './modules/virtual/virtual.js';
and in MDN docs i can find that also something like
export { Something as default }
is possible. So I can currently see the following syntaxes:
export { Something as default }
export { default as Something }
export { default as Something, default }
What are the difference between the 3?