source: trip-planner-front/node_modules/@angular/platform-browser-dynamic/testing/testing.d.ts@ 6c1585f

Last change on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.6 KB
Line 
1/**
2 * @license Angular v12.2.9
3 * (c) 2010-2021 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 removeAllRootElements(): void;
46}
47
48/**
49 * Platform for dynamic tests
50 *
51 * @publicApi
52 */
53export declare const ɵplatformCoreDynamicTesting: (extraProviders?: any[]) => PlatformRef;
54
55export { }
Note: See TracBrowser for help on using the repository browser.