wiki/content/20201116170347-module_namespace_exports.md

17 lines
253 B
Markdown
Raw Normal View History

2024-05-06 20:40:05 +00:00
---
2024-10-30 17:04:36 +00:00
date: 20201116
2024-05-06 20:40:05 +00:00
id: f1d1319a-5fa3-41ce-bfa7-20b9dbc2341a
title: Module Namespace Exports
---
# Description
It's possible to re-export an imported module with a name change
directly.
# Syntax
``` javascript
export * as someUtils from 'utils';
```