You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.6 KiB
55 lines
1.6 KiB
/**
|
|
* @license Angular v12.2.15
|
|
* (c) 2010-2021 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;
|
|
removeAllRootElements(): void;
|
|
}
|
|
|
|
/**
|
|
* Platform for dynamic tests
|
|
*
|
|
* @publicApi
|
|
*/
|
|
export declare const ɵplatformCoreDynamicTesting: (extraProviders?: any[]) => PlatformRef;
|
|
|
|
export { }
|