mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 03:26:22 +00:00
16 lines
255 B
Markdown
16 lines
255 B
Markdown
---
|
|
date: 2020-11-16
|
|
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';
|
|
```
|