123456789101112 |
- /**
- * 获取全局 Global
- * 根据 Angular 中 utils/global 实现
- * @source https://github.com/angular/angular/blob/master/packages/core/src/util/global.ts
- */
- declare const _global: any;
- /**
- * Attention: whenever providing a new value, be sure to add an
- * entry into the corresponding `....externs.js` file,
- * so that closure won't use that global for its purposes.
- */
- export { _global as global };
|