mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 11:11:30 +03:00
17 lines
341 B
TypeScript
17 lines
341 B
TypeScript
// @module: amd
|
|
// @target: esnext
|
|
// @filename: 0.ts
|
|
export class B {
|
|
print() { return "I am B"}
|
|
}
|
|
|
|
// @filename: 2.ts
|
|
// We use Promise<any> for now as there is no way to specify shape of module object
|
|
function foo(x: Promise<any>) {
|
|
x.then(value => {
|
|
let b = new value.B();
|
|
b.print();
|
|
})
|
|
}
|
|
|
|
foo(import("./0")); |