48 lines
1.1 KiB
TypeScript
Executable file
48 lines
1.1 KiB
TypeScript
Executable file
/**
|
|
* @license Angular v18.2.10
|
|
* (c) 2010-2024 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 { StaticProvider } from '@angular/core';
|
|
import { Version } from '@angular/core';
|
|
|
|
/**
|
|
* @publicApi
|
|
*
|
|
* @deprecated
|
|
* Ivy JIT mode doesn't require accessing this symbol.
|
|
*/
|
|
export declare class JitCompilerFactory implements CompilerFactory {
|
|
private _defaultOptions;
|
|
createCompiler(options?: CompilerOptions[]): Compiler;
|
|
}
|
|
|
|
/**
|
|
* @publicApi
|
|
*/
|
|
export declare const platformBrowserDynamic: (extraProviders?: StaticProvider[]) => PlatformRef;
|
|
|
|
/**
|
|
* @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[]) => PlatformRef;
|
|
|
|
export { }
|