mirror of
https://github.com/swc-project/swc.git
synced 2024-12-01 01:13:56 +03:00
21 lines
361 B
TypeScript
21 lines
361 B
TypeScript
// @filename: function.ts
|
|
module A {
|
|
export function Point() {
|
|
return { x: 0, y: 0 };
|
|
}
|
|
}
|
|
|
|
// @filename: module.ts
|
|
module B {
|
|
export module Point {
|
|
export var Origin = { x: 0, y: 0 };
|
|
}
|
|
}
|
|
|
|
// @filename: test.ts
|
|
var fn: () => { x: number; y: number };
|
|
var fn = A.Point;
|
|
|
|
var cl: { x: number; y: number; }
|
|
var cl = B.Point.Origin;
|