mirror of
https://github.com/danbulant/oxc
synced 2026-05-25 04:42:10 +00:00
6 lines
130 B
JavaScript
6 lines
130 B
JavaScript
export const c = 'foo'
|
|
|
|
export * from './named-exports'
|
|
|
|
// #328: this exports only 'foo', not the default.
|
|
export * from './bar'
|