browser.d.ts 744 B

1234567891011121314151617181920212223
  1. /**
  2. * @license
  3. * Copyright Google Inc. All Rights Reserved.
  4. *
  5. * Use of this source code is governed by an MIT-style license that can be
  6. * found in the LICENSE file at https://angular.io/license
  7. */
  8. /**
  9. * JS version of browser APIs. This library can only run in the browser.
  10. */
  11. declare const win: any;
  12. export { win as window };
  13. export declare const document: any;
  14. export declare const location: any;
  15. export declare const gc: () => any;
  16. export declare const performance: any;
  17. export declare const Event: any;
  18. export declare const MouseEvent: any;
  19. export declare const KeyboardEvent: any;
  20. export declare const EventTarget: any;
  21. export declare const History: any;
  22. export declare const Location: any;
  23. export declare const EventListener: any;