index.d.ts 1.5 KB

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