Kargi-Sitesi/node_modules/@angular/platform-browser-dynamic/index.d.ts

49 lines
1.1 KiB
TypeScript
Raw Normal View History

2024-11-03 21:30:09 -05:00
/**
* @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 { }