TypeScript/tests/cases/compiler/internalAliasFunction.ts

13 lines
199 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
// @declaration: true
module a {
export function foo(x: number) {
return x;
}
}
module c {
import b = a.foo;
export var bVal = b(10);
export var bVal2 = b;
}