mirror of
https://github.com/swc-project/swc.git
synced 2024-12-25 14:43:33 +03:00
de24ff275d
swc_ecma_transforms_module: - Allow using a namespace import specifier with a default import specifier. (#1938)
4 lines
81 B
JavaScript
4 lines
81 B
JavaScript
import foo, * as action from './actions';
|
|
|
|
console.log(action);
|
|
console.log(foo); |