Skip to content

Commit 5dedb5c

Browse files
committed
feat(cheetsheet): export * as ns from "./x.js" の追加
#1247 #1203
1 parent f218363 commit 5dedb5c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

source/cheetsheet/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,7 @@ ECMAScriptモジュールについて。
242242
| `export { x as y }` | [ES2015] 名前付きエクスポートの**エイリアス** | [ECMAScriptモジュール][] |
243243
| `export { x } from "./x.js"` | [ES2015] 名前付きエクスポートの**再エクスポート** | [ECMAScriptモジュール][] |
244244
| `export * from "./x.js"` | [ES2015] すべての名前付きエクスポートの**再エクスポート** | [ECMAScriptモジュール][] |
245+
| `export * as ns from "./x.js";` | [ES2020] **すべての名前付きエクスポートをインポート**して`ns`という名前で**再エクスポート** | [ECMAScriptモジュール][] |
245246

246247

247248
### その他 {#miscellaneous}

0 commit comments

Comments
 (0)