UNPKG

1.12 kBTypeScriptView Raw
1/**
2 * @license Angular v19.1.4
3 * (c) 2010-2024 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 { StaticProvider } from '@angular/core';
13import { Version } from '@angular/core';
14
15/**
16 * @publicApi
17 *
18 * @deprecated
19 * Ivy JIT mode doesn't require accessing this symbol.
20 */
21export declare class JitCompilerFactory implements CompilerFactory {
22 private _defaultOptions;
23 createCompiler(options?: CompilerOptions[]): Compiler;
24}
25
26/**
27 * @publicApi
28 */
29export declare const platformBrowserDynamic: (extraProviders?: StaticProvider[]) => PlatformRef;
30
31/**
32 * @publicApi
33 */
34export declare const VERSION: Version;
35
36/**
37 * @publicApi
38 */
39export declare const ɵINTERNAL_BROWSER_DYNAMIC_PLATFORM_PROVIDERS: StaticProvider[];
40
41/**
42 * A platform that included corePlatform and the compiler.
43 *
44 * @publicApi
45 */
46export declare const ɵplatformCoreDynamic: (extraProviders?: StaticProvider[]) => PlatformRef;
47
48export { }