[6a3a178] | 1 | /**
|
---|
[e29cc2e] | 2 | * @license Angular v12.2.13
|
---|
[6a3a178] | 3 | * (c) 2010-2021 Google LLC. https://angular.io/
|
---|
| 4 | * License: MIT
|
---|
| 5 | */
|
---|
| 6 |
|
---|
| 7 | import { CompilerFactory } from '@angular/core';
|
---|
| 8 | import { CompilerOptions } from '@angular/core';
|
---|
| 9 | import { Injector } from '@angular/core';
|
---|
| 10 | import { PlatformRef } from '@angular/core';
|
---|
| 11 | import { StaticProvider } from '@angular/core';
|
---|
| 12 | import { TestComponentRenderer } from '@angular/core/testing';
|
---|
| 13 | import { ɵTestingCompiler } from '@angular/core/testing';
|
---|
| 14 | import { ɵTestingCompilerFactory } from '@angular/core/testing';
|
---|
| 15 |
|
---|
| 16 | /**
|
---|
| 17 | * NgModule for testing.
|
---|
| 18 | *
|
---|
| 19 | * @publicApi
|
---|
| 20 | */
|
---|
| 21 | export declare class BrowserDynamicTestingModule {
|
---|
| 22 | }
|
---|
| 23 |
|
---|
| 24 | /**
|
---|
| 25 | * @publicApi
|
---|
| 26 | */
|
---|
| 27 | export declare const platformBrowserDynamicTesting: (extraProviders?: StaticProvider[] | undefined) => PlatformRef;
|
---|
| 28 |
|
---|
| 29 | export declare const ɵangular_packages_platform_browser_dynamic_testing_testing_a: StaticProvider[];
|
---|
| 30 |
|
---|
| 31 | export declare class ɵangular_packages_platform_browser_dynamic_testing_testing_b implements ɵTestingCompilerFactory {
|
---|
| 32 | private _injector;
|
---|
| 33 | private _compilerFactory;
|
---|
| 34 | constructor(_injector: Injector, _compilerFactory: CompilerFactory);
|
---|
| 35 | createTestingCompiler(options: CompilerOptions[]): ɵTestingCompiler;
|
---|
| 36 | }
|
---|
| 37 |
|
---|
| 38 | /**
|
---|
| 39 | * A DOM based implementation of the TestComponentRenderer.
|
---|
| 40 | */
|
---|
| 41 | export declare class ɵDOMTestComponentRenderer extends TestComponentRenderer {
|
---|
| 42 | private _doc;
|
---|
| 43 | constructor(_doc: any);
|
---|
| 44 | insertRootElement(rootElId: string): void;
|
---|
| 45 | removeAllRootElements(): void;
|
---|
| 46 | }
|
---|
| 47 |
|
---|
| 48 | /**
|
---|
| 49 | * Platform for dynamic tests
|
---|
| 50 | *
|
---|
| 51 | * @publicApi
|
---|
| 52 | */
|
---|
| 53 | export declare const ɵplatformCoreDynamicTesting: (extraProviders?: any[]) => PlatformRef;
|
---|
| 54 |
|
---|
| 55 | export { }
|
---|