UNPKG

1.64 kBTypeScriptView Raw
1/**
2 * @license Angular v9.1.1
3 * (c) 2010-2020 Google LLC. https://angular.io/
4 * License: MIT
5 */
6
7import { CompilerFactory } from '@angular/core';
8import { CompilerOptions } from '@angular/core';
9import { Injector } from '@angular/core';
10import { PlatformRef } from '@angular/core';
11import { StaticProvider } from '@angular/core';
12import { TestComponentRenderer } from '@angular/core/testing';
13import { ɵTestingCompiler } from '@angular/core/testing';
14import { ɵTestingCompilerFactory } from '@angular/core/testing';
15
16/**
17 * NgModule for testing.
18 *
19 * @publicApi
20 */
21export declare class BrowserDynamicTestingModule {
22}
23
24/**
25 * @publicApi
26 */
27export declare const platformBrowserDynamicTesting: (extraProviders?: StaticProvider[] | undefined) => PlatformRef;
28
29export declare const ɵangular_packages_platform_browser_dynamic_testing_testing_a: StaticProvider[];
30
31export 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 */
41export declare class ɵDOMTestComponentRenderer extends TestComponentRenderer {
42 private _doc;
43 constructor(_doc: any);
44 insertRootElement(rootElId: string): void;
45}
46
47/**
48 * Platform for dynamic tests
49 *
50 * @publicApi
51 */
52export declare const ɵplatformCoreDynamicTesting: (extraProviders?: any[]) => PlatformRef;
53
54export { }