| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- /**
- * @license Angular v8.1.0
- * (c) 2010-2019 Google LLC. https://angular.io/
- * License: MIT
- */
- import { CompilerFactory } from '@angular/core';
- import { CompilerOptions } from '@angular/core';
- import { Injector } from '@angular/core';
- import { PlatformRef } from '@angular/core';
- import { StaticProvider } from '@angular/core';
- import { TestComponentRenderer } from '@angular/core/testing';
- import { ɵTestingCompiler } from '@angular/core/testing';
- import { ɵTestingCompilerFactory } from '@angular/core/testing';
- /**
- * NgModule for testing.
- *
- * @publicApi
- */
- export declare class BrowserDynamicTestingModule {
- }
- /**
- * @publicApi
- */
- export declare const platformBrowserDynamicTesting: (extraProviders?: StaticProvider[] | undefined) => PlatformRef;
- export declare const ɵangular_packages_platform_browser_dynamic_testing_testing_a: StaticProvider[];
- export declare class ɵangular_packages_platform_browser_dynamic_testing_testing_b implements ɵTestingCompilerFactory {
- private _injector;
- private _compilerFactory;
- constructor(_injector: Injector, _compilerFactory: CompilerFactory);
- createTestingCompiler(options: CompilerOptions[]): ɵTestingCompiler;
- }
- /**
- * A DOM based implementation of the TestComponentRenderer.
- */
- export declare class ɵDOMTestComponentRenderer extends TestComponentRenderer {
- private _doc;
- constructor(_doc: any);
- insertRootElement(rootElId: string): void;
- }
- /**
- * Platform for dynamic tests
- *
- * @publicApi
- */
- export declare const ɵplatformCoreDynamicTesting: (extraProviders?: any[]) => PlatformRef;
- export { }
|