UNPKG

1.53 kBTypeScriptView Raw
1/**
2 * @license Angular v14.1.3
3 * (c) 2010-2022 Google LLC. https://angular.io/
4 * License: MIT
5 */
6
7
8import { Compiler } from '@angular/core';
9import { CompilerFactory } from '@angular/core';
10import { CompilerOptions } from '@angular/core';
11import { PlatformRef } from '@angular/core';
12import { Provider } from '@angular/core';
13import { StaticProvider } from '@angular/core';
14import { Version } from '@angular/core';
15
16/**
17 * @publicApi
18 *
19 * @deprecated
20 * Ivy JIT mode doesn't require accessing this symbol.
21 * See [JIT API changes due to ViewEngine deprecation](guide/deprecations#jit-api-changes) for
22 * additional context.
23 */
24export declare class JitCompilerFactory implements CompilerFactory {
25 private _defaultOptions;
26 createCompiler(options?: CompilerOptions[]): Compiler;
27}
28
29/**
30 * @publicApi
31 */
32export declare const platformBrowserDynamic: (extraProviders?: StaticProvider[] | undefined) => PlatformRef;
33
34/**
35 * @publicApi
36 *
37 * @deprecated This was previously necessary in some cases to test AOT-compiled components with View
38 * Engine, but is no longer since Ivy.
39
40 */
41export declare const RESOURCE_CACHE_PROVIDER: Provider[];
42
43/**
44 * @publicApi
45 */
46export declare const VERSION: Version;
47
48/**
49 * @publicApi
50 */
51export declare const ɵINTERNAL_BROWSER_DYNAMIC_PLATFORM_PROVIDERS: StaticProvider[];
52
53/**
54 * A platform that included corePlatform and the compiler.
55 *
56 * @publicApi
57 */
58export declare const ɵplatformCoreDynamic: (extraProviders?: StaticProvider[] | undefined) => PlatformRef;
59
60export { }