mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 19:52:21 +03:00
16 lines
225 B
TypeScript
16 lines
225 B
TypeScript
|
// @module: amd
|
||
|
// @Filename: foo_0.ts
|
||
|
class Foo {
|
||
|
test = "test";
|
||
|
}
|
||
|
module Foo {
|
||
|
export var answer = 42;
|
||
|
}
|
||
|
export = Foo;
|
||
|
|
||
|
// @Filename: foo_1.ts
|
||
|
import foo = require("./foo_0");
|
||
|
if(foo.answer === 42){
|
||
|
var x = new foo();
|
||
|
}
|