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

13 lines
199 B
TypeScript

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