JavaScript renomear no módulo
// renaming import inside module.js
export {
function1 as newName1,
function2 as newName2
};
// when you want to use the module
// import in the main file
import { newName1, newName2 } from './module.js';
SAMER SAEID