| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- /**
- * @license Angular v16.0.4
- * (c) 2010-2022 Google LLC. https://angular.io/
- * License: MIT
- */
- import { Compiler } from '@angular/core';
- import { CompilerFactory } from '@angular/core';
- import { CompilerOptions } from '@angular/core';
- import { PlatformRef } from '@angular/core';
- import { Provider } from '@angular/core';
- import { StaticProvider } from '@angular/core';
- import { Version } from '@angular/core';
- /**
- * @publicApi
- *
- * @deprecated
- * Ivy JIT mode doesn't require accessing this symbol.
- * See [JIT API changes due to ViewEngine deprecation](guide/deprecations#jit-api-changes) for
- * additional context.
- */
- export declare class JitCompilerFactory implements CompilerFactory {
- private _defaultOptions;
- createCompiler(options?: CompilerOptions[]): Compiler;
- }
- /**
- * @publicApi
- */
- export declare const platformBrowserDynamic: (extraProviders?: StaticProvider[] | undefined) => PlatformRef;
- /**
- * @publicApi
- *
- * @deprecated This was previously necessary in some cases to test AOT-compiled components with View
- * Engine, but is no longer since Ivy.
- */
- export declare const RESOURCE_CACHE_PROVIDER: Provider[];
- /**
- * @publicApi
- */
- export declare const VERSION: Version;
- /**
- * @publicApi
- */
- export declare const ɵINTERNAL_BROWSER_DYNAMIC_PLATFORM_PROVIDERS: StaticProvider[];
- /**
- * A platform that included corePlatform and the compiler.
- *
- * @publicApi
- */
- export declare const ɵplatformCoreDynamic: (extraProviders?: StaticProvider[] | undefined) => PlatformRef;
- export { }
|