TypeScript/tests/cases/compiler/importDeclWithClassModifiers.ts

10 lines
162 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//@module: amd
module x {
interface c {
}
}
export public import a = x.c;
export private import b = x.c;
export static import c = x.c;
var b: a;