testing.d.ts 592 B

12345678910111213141516171819202122232425262728
  1. /**
  2. * @license Angular v8.1.3
  3. * (c) 2010-2019 Google LLC. https://angular.io/
  4. * License: MIT
  5. */
  6. import { NgZone } from '@angular/core';
  7. import { PlatformRef } from '@angular/core';
  8. import { StaticProvider } from '@angular/core';
  9. /**
  10. * NgModule for testing.
  11. *
  12. * @publicApi
  13. */
  14. export declare class BrowserTestingModule {
  15. }
  16. /**
  17. * Platform for testing
  18. *
  19. * @publicApi
  20. */
  21. export declare const platformBrowserTesting: (extraProviders?: StaticProvider[] | undefined) => PlatformRef;
  22. export declare function ɵangular_packages_platform_browser_testing_testing_a(): NgZone;
  23. export { }