例如:
declare function foo(x : string, y : boolean) : string;
module Bar {
export function foo(x : string) { return ???.foo(x, true); }
}
如何从foo
内的任何位置访问全局Bar
(原始foo
引用将隐式引用Bar.foo
)?
答案 0 :(得分:3)
没有一个好方法可以做到这一点。
从技术上讲,您可以编写window['foo']
,但这会在未调用全局对象的运行时中断window
。