mirror of
https://github.com/swc-project/swc.git
synced 2024-12-03 00:54:25 +03:00
17 lines
288 B
TypeScript
17 lines
288 B
TypeScript
// @module: esnext, es2015, commonjs, amd, system, umd
|
|
// @filename: 0.ts
|
|
// @declaration: true
|
|
// @esModuleInterop: true
|
|
export const a = 1;
|
|
export const b = 2;
|
|
|
|
// @filename: 1.ts
|
|
export * as ns from './0';
|
|
ns.a;
|
|
ns.b;
|
|
|
|
// @filename: 2.ts
|
|
import * as foo from './1'
|
|
|
|
foo.ns.a;
|
|
foo.ns.b; |