JavaScript renomear no arquivo de importação
// inside module.js
export {
function1,
function2
};
// when you want to use the module
// import in the required file with different name
import { function1 as newName1, function2 as newName2 } from './module.js';
SAMER SAEID