dom_tokens-rA0ACyx7.mjs 516 B

12345678910111213141516171819
  1. /**
  2. * @license Angular v19.2.13
  3. * (c) 2010-2025 Google LLC. https://angular.io/
  4. * License: MIT
  5. */
  6. import { InjectionToken } from '@angular/core';
  7. /**
  8. * A DI Token representing the main rendering context.
  9. * In a browser and SSR this is the DOM Document.
  10. * When using SSR, that document is created by [Domino](https://github.com/angular/domino).
  11. *
  12. * @publicApi
  13. */
  14. const DOCUMENT = new InjectionToken(ngDevMode ? 'DocumentToken' : '');
  15. export { DOCUMENT };
  16. //# sourceMappingURL=dom_tokens-rA0ACyx7.mjs.map