有人知道如何在environment.ts文件中使用窗口、文档或位置吗?我编译时出错了function 'window', function calls are not supported. Considerfunction, resolving symbol environment in ...
我使用的
我在全球范围内宣布了一个class A:我还有namespace N,它和其他类型的class A一起使用: class A { }}namespace N { static getA(): A { // here
return new A(); // and here I want to refer global A, not N
如何全局声明一些自定义变量? 使用示例 import './logger'; // custom module: Global logger is initialized. (using winston)
log.info('This is custom global logger.'); // access to log variable globally.
为了澄清我的问题,以下是Javascript-esque伪代码中的两个示例。下面是同样的例子,但是需要更多代码来上下文化它们:socket.on('login screen built', socketLoginScreenBuilt);
// See how I'm using this conditional to preve