TypeScript/tests/cases/compiler/importDeclWithClassModifiers.ts
2014-07-12 17:30:19 -07:00

10 lines
162 B
TypeScript

//@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;