To re-export all named exports from a module, use export * from _________.

  • export * from 'moduleName';
  • export all from 'moduleName';
  • export {all} from 'moduleName';
  • export named from 'moduleName';
To re-export all named exports from a module in ES6, you use the export * from 'moduleName'; syntax. This allows you to export all the named exports from one module to another without listing them individually.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *