global.d.ts 408 B

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