{ "id": "api/core", "title": "@angular/core", "contents": "\n\n
\n
\n
\n \n API\n
\n \n
\n \n
\n

@angular/corelink

\n \n \n \n \n
\n\n \n\n
\n

Implements Angular's core functionality, low-level services, and utilities.

\n\n \n\n\n \n\n\n \n

Entry pointslink

\n \n \n \n
\n

Primarylink

\n \n \n \n \n \n \n \n
@angular/core\n \n

Implements Angular's core functionality, low-level services, and utilities.

\n\n
\n
\n \n\n \n \n \n
\n

Secondarylink

\n \n \n \n \n \n \n \n \n \n \n \n \n
@angular/core/global\n \n

Exposes a set of functions in the global namespace which are useful for debugging the current state\nof your application.\nThese functions are exposed via the global ng \"namespace\" variable automatically when you import\nfrom @angular/core and run your application in development mode. These functions are not exposed\nwhen the application runs in a production mode.

\n\n
@angular/core/testing\n \n

Provides infrastructure for testing Angular core functionality.

\n\n
\n
\n \n\n \n\n

Primary entry point exportslink

\n \n \n \n \n \n
\n

NgModuleslink

\n \n \n \n \n \n \n \n
ApplicationModule\n \n

Configures the root injector for an app with\nproviders of @angular/core dependencies that ApplicationRef needs\nto bootstrap components.

\n\n
\n
\n \n\n \n \n \n
\n

Classeslink

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
ApplicationInitStatus\n \n

A class that reflects the state of running APP_INITIALIZER functions.

\n\n
Attribute\n \n

Attribute decorator and metadata.

\n\n
ChangeDetectorRef\n \n

Base class that provides change detection functionality.\nA change-detection tree collects all views that are to be checked for changes.\nUse the methods to add and remove views from the tree, initiate change-detection,\nand explicitly mark views as dirty, meaning that they have changed and need to be re-rendered.

\n\n
Compiler\n \n

Low-level service for running the angular compiler during runtime\nto create ComponentFactorys, which\ncan later be used to create and render a Component instance.

\n\n
CompilerFactory\n \n

A factory for creating a Compiler

\n\n
ComponentFactory\n \n

Base class for a factory that can create a component dynamically.\nInstantiate a factory for a given type of component with resolveComponentFactory().\nUse the resulting ComponentFactory.create() method to create a component of that type.

\n\n
ComponentFactoryResolver\n \n

A simple registry that maps Components to generated ComponentFactory classes\nthat can be used to create instances of components.\nUse to obtain the factory for a given component type,\nthen use the factory's create() method to create a component of that type.

\n\n
ComponentRef\n \n

Represents a component created by a ComponentFactory.\nProvides access to the component instance and related objects,\nand provides the means of destroying the instance.

\n\n
DebugElement\n \n \n
DebugEventListener\n \n \n
DebugNode\n \n \n
DefaultIterableDiffer\n

Deprecated: v4.0.0 - Should not be part of public API.

\n\n \n
ElementRef\n \n

A wrapper around a native element inside of a View.

\n\n
EmbeddedViewRef\n \n

Represents an Angular view in a view container.\nAn embedded view can be referenced from a component\nother than the hosting component whose template defines it, or it can be defined\nindependently by a TemplateRef.

\n\n
ErrorHandler\n \n

Provides a hook for centralized exception handling.

\n\n
EventEmitter\n \n

Use in components with the @Output directive to emit custom events\nsynchronously or asynchronously, and register handlers for those events\nby subscribing to an instance.

\n\n
InjectionToken\n \n

Creates a token that can be used in a DI Provider.

\n\n
Injector\n \n

Concrete injectors implement this interface. Injectors are configured\nwith providers that associate\ndependencies of various types with injection tokens.

\n\n
IterableDiffers\n \n

A repository of different iterable diffing strategies used by NgFor, NgClass, and others.

\n\n
KeyValueDiffers\n \n

A repository of different Map diffing strategies used by NgClass, NgStyle, and others.

\n\n
ModuleWithComponentFactories\n \n

Combination of NgModuleFactory and ComponentFactories.

\n\n
NgModuleFactory\n \n \n
NgModuleFactoryLoader\n

Deprecated: the string form of loadChildren is deprecated, and NgModuleFactoryLoader is\npart of its implementation. See LoadChildren for more details.

\n\n

Used to load ng module factories.

\n\n
NgModuleRef\n \n

Represents an instance of an NgModule created by an NgModuleFactory.\nProvides access to the NgModule instance and related objects.

\n\n
NgProbeToken\n \n

A token for third-party components that can register themselves with NgProbe.

\n\n
NgZone\n \n

An injectable service for executing work inside or outside of the Angular zone.

\n\n
Query\n \n

Base class for query metadata.

\n\n
QueryList\n \n

An unmodifiable list of items that Angular keeps up to date when the state\nof the application changes.

\n\n
ReflectiveInjector\n

Deprecated: from v5 - slow and brings in a lot of code, Use Injector.create instead.

\n\n

A ReflectiveDependency injection container used for instantiating objects and resolving\ndependencies.

\n\n
ReflectiveKey\n

Deprecated: No replacement

\n\n

A unique object used for retrieving items from the ReflectiveInjector.

\n\n
Renderer2\n \n

Extend this base class to implement custom rendering. By default, Angular\nrenders a template into DOM. You can use custom rendering to intercept\nrendering calls, or to render to something other than DOM.

\n\n
RendererFactory2\n \n

Creates and initializes a custom renderer that implements the Renderer2 base class.

\n\n
ResolvedReflectiveFactory\n \n

An internal resolved representation of a factory function created by resolving Provider.

\n\n
Sanitizer\n \n

Sanitizer is used by the views to sanitize potentially dangerous values.

\n\n
SimpleChange\n \n

Represents a basic change from a previous to a new value for a single\nproperty on a directive instance. Passed as a value in a\nSimpleChanges object to the ngOnChanges hook.

\n\n
SystemJsNgModuleLoader\n

Deprecated: the string form of loadChildren is deprecated, and SystemJsNgModuleLoader is\npart of its implementation. See LoadChildren for more details.

\n\n

NgModuleFactoryLoader that uses SystemJS to load NgModuleFactory

\n\n
SystemJsNgModuleLoaderConfig\n

Deprecated: the string form of loadChildren is deprecated, and SystemJsNgModuleLoaderConfig\nis part of its implementation. See LoadChildren for more details.

\n\n

Configuration for SystemJsNgModuleLoader.\ntoken.

\n\n
TemplateRef\n \n

Represents an embedded template that can be used to instantiate embedded views.\nTo instantiate embedded views based on a template, use the ViewContainerRef\nmethod createEmbeddedView().

\n\n
Testability\n \n

The Testability service provides testing hooks that can be accessed from\nthe browser and by services such as Protractor. Each bootstrapped Angular\napplication on the page will have an instance of Testability.

\n\n
TestabilityRegistry\n \n

A global registry of Testability instances for specific elements.

\n\n
Type\n \n

Represents a type that a Component or other object is instances of.

\n\n
Version\n \n

Represents the version of Angular

\n\n
ViewContainerRef\n \n

Represents a container where one or more views can be attached to a component.

\n\n
ViewRef\n \n

Represents an Angular view.

\n\n
WrappedValue\n

Deprecated: from v10 stop using. (No replacement, deemed unnecessary.)

\n\n

Indicates that the result of a Pipe transformation has changed even though the\nreference has not changed.

\n\n
\n
\n \n\n \n \n \n
\n

Decoratorslink

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
Component\n \n

Decorator that marks a class as an Angular component and provides configuration\nmetadata that determines how the component should be processed,\ninstantiated, and used at runtime.

\n\n
ContentChild\n \n

Parameter decorator that configures a content query.

\n\n
ContentChildren\n \n

Parameter decorator that configures a content query.

\n\n
Directive\n \n

Decorator that marks a class as an Angular directive.\nYou can define your own directives to attach custom behavior to elements in the DOM.

\n\n
Host\n \n

Parameter decorator on a view-provider parameter of a class constructor\nthat tells the DI framework to resolve the view by checking injectors of child\nelements, and stop when reaching the host element of the current component.

\n\n
HostBinding\n \n

Decorator that marks a DOM property as a host-binding property and supplies configuration\nmetadata.\nAngular automatically checks host property bindings during change detection, and\nif a binding changes it updates the host element of the directive.

\n\n
HostListener\n \n

Decorator that declares a DOM event to listen for,\nand provides a handler method to run when that event occurs.

\n\n
Inject\n \n

Parameter decorator on a dependency parameter of a class constructor\nthat specifies a custom provider of the dependency.

\n\n
Injectable\n \n

Decorator that marks a class as available to be\nprovided and injected as a dependency.

\n\n
Input\n \n

Decorator that marks a class field as an input property and supplies configuration metadata.\nThe input property is bound to a DOM property in the template. During change detection,\nAngular automatically updates the data property with the DOM property's value.

\n\n
NgModule\n \n

Decorator that marks a class as an NgModule and supplies configuration metadata.

\n\n
Optional\n \n

Parameter decorator to be used on constructor parameters,\nwhich marks the parameter as being an optional dependency.\nThe DI framework provides null if the dependency is not found.

\n\n
Output\n \n

Decorator that marks a class field as an output property and supplies configuration metadata.\nThe DOM property bound to the output property is automatically updated during change detection.

\n\n
Pipe\n \n

Decorator that marks a class as pipe and supplies configuration metadata.

\n\n
Self\n \n

Parameter decorator to be used on constructor parameters,\nwhich tells the DI framework to start dependency resolution from the local injector.

\n\n
SkipSelf\n \n

Parameter decorator to be used on constructor parameters,\nwhich tells the DI framework to start dependency resolution from the parent injector.\nResolution works upward through the injector hierarchy, so the local injector\nis not checked for a provider.

\n\n
ViewChild\n \n

Property decorator that configures a view query.\nThe change detector looks for the first element or the directive matching the selector\nin the view DOM. If the view DOM changes, and a new child matches the selector,\nthe property is updated.

\n\n
ViewChildren\n \n

Parameter decorator that configures a view query.

\n\n
\n
\n \n\n \n \n \n
\n

Functionslink

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
asNativeElements\n \n \n
assertPlatform\n \n

Checks that there is currently a platform that contains the given token as a provider.

\n\n
createPlatform\n \n

Creates a platform.\nPlatforms must be created on launch using this function.

\n\n
createPlatformFactory\n \n

Creates a factory for a platform. Can be used to provide or override Providers specific to\nyour application's runtime needs, such as PLATFORM_INITIALIZER and PLATFORM_ID.

\n\n
destroyPlatform\n \n

Destroys the current Angular platform and all Angular applications on the page.\nDestroys all modules and listeners registered with the platform.

\n\n
enableProdMode\n \n

Disable Angular's development mode, which turns off assertions and other\nchecks within the framework.

\n\n
forwardRef\n \n

Allows to refer to references which are not yet defined.

\n\n
getPlatform\n \n

Returns the current platform.

\n\n
isDevMode\n \n

Returns whether Angular is in development mode. After called once,\nthe value is locked and won't change any more.

\n\n
resolveForwardRef\n \n

Lazily retrieves the reference value from a forwardRef.

\n\n
setTestabilityGetter\n \n

Set the GetTestability implementation used by the Angular testing framework.

\n\n
\n
\n \n\n \n \n \n
\n

Structureslink

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
AbstractType\n \n

Represents an abstract class T, if applied to a concrete class it would stop being\ninstantiable.

\n\n
AfterContentChecked\n \n

A lifecycle hook that is called after the default change detector has\ncompleted checking all content of a directive.

\n\n
AfterContentInit\n \n

A lifecycle hook that is called after Angular has fully initialized\nall content of a directive.\nDefine an ngAfterContentInit() method to handle any additional initialization tasks.

\n\n
AfterViewChecked\n \n

A lifecycle hook that is called after the default change detector has\ncompleted checking a component's view for changes.

\n\n
AfterViewInit\n \n

A lifecycle hook that is called after Angular has fully initialized\na component's view.\nDefine an ngAfterViewInit() method to handle any additional initialization tasks.

\n\n
ApplicationRef\n \n

A reference to an Angular application running on a page.

\n\n
AttributeDecorator\n \n

Type of the Attribute decorator / constructor function.

\n\n
ChangeDetectionStrategy\n \n

The strategy that the default change detector uses to detect changes.\nWhen set, takes effect the next time change detection is triggered.

\n\n
ClassProvider\n \n

Configures the Injector to return an instance of useClass for a token.

\n\n
ClassSansProvider\n \n

Configures the Injector to return a value by invoking a useClass function.\nBase for ClassProvider decorator.

\n\n
ConstructorProvider\n \n

Configures the Injector to return an instance of a token.

\n\n
ConstructorSansProvider\n \n

Configures the Injector to return an instance of a token.

\n\n
DoBootstrap\n \n

Hook for manual bootstrapping of the application instead of using bootstrap array in @NgModule\nannotation.

\n\n
DoCheck\n \n

A lifecycle hook that invokes a custom change-detection function for a directive,\nin addition to the check performed by the default change-detector.

\n\n
ExistingProvider\n \n

Configures the Injector to return a value of another useExisting token.

\n\n
ExistingSansProvider\n \n

Configures the Injector to return a value of another useExisting token.

\n\n
FactoryProvider\n \n

Configures the Injector to return a value by invoking a useFactory function.

\n\n
FactorySansProvider\n \n

Configures the Injector to return a value by invoking a useFactory function.

\n\n
ForwardRefFn\n \n

An interface that a function passed into forwardRef has to implement.

\n\n
GetTestability\n \n

Adapter interface for retrieving the Testability service associated for a\nparticular context.

\n\n
InjectFlags\n \n

Injection flags for DI.

\n\n
InjectableType\n \n

A Type which has an InjectableDef static field.

\n\n
InjectorType\n \n

A type which has an InjectorDef static field.

\n\n
IterableChangeRecord\n \n

Record representing the item change information.

\n\n
IterableChanges\n \n

An object describing the changes in the Iterable collection since last time\nIterableDiffer#diff() was invoked.

\n\n
IterableDiffer\n \n

A strategy for tracking changes over time to an iterable. Used by NgForOf to\nrespond to changes in an iterable by effecting equivalent changes in the DOM.

\n\n
IterableDifferFactory\n \n

Provides a factory for IterableDiffer.

\n\n
KeyValueChangeRecord\n \n

Record representing the item change information.

\n\n
KeyValueChanges\n \n

An object describing the changes in the Map or {[k:string]: string} since last time\nKeyValueDiffer#diff() was invoked.

\n\n
KeyValueDiffer\n \n

A differ that tracks changes made to an object over time.

\n\n
KeyValueDifferFactory\n \n

Provides a factory for KeyValueDiffer.

\n\n
MissingTranslationStrategy\n \n

Use this enum at bootstrap as an option of bootstrapModule to define the strategy\nthat the compiler should use in case of missing translations:

\n
    \n
  • Error: throw if you have missing translations.
  • \n
  • Warning (default): show a warning in the console and/or shell.
  • \n
  • Ignore: do nothing.
  • \n
\n\n
ModuleWithProviders\n \n

A wrapper around an NgModule that associates it with providers. Usage without a generic type is deprecated.

\n\n
OnChanges\n \n

A lifecycle hook that is called when any data-bound property of a directive changes.\nDefine an ngOnChanges() method to handle the changes.

\n\n
OnDestroy\n \n

A lifecycle hook that is called when a directive, pipe, or service is destroyed.\nUse for any custom cleanup that needs to occur when the\ninstance is destroyed.

\n\n
OnInit\n \n

A lifecycle hook that is called after Angular has initialized\nall data-bound properties of a directive.\nDefine an ngOnInit() method to handle any additional initialization tasks.

\n\n
PipeTransform\n \n

An interface that is implemented by pipes in order to perform a transformation.\nAngular invokes the transform method with the value of a binding\nas the first argument, and any parameters as the second argument in list form.

\n\n
PlatformRef\n \n

The Angular platform is the entry point for Angular on a web page.\nEach page has exactly one platform. Services (such as reflection) which are common\nto every Angular application running on the page are bound in its scope.\nA page's platform is initialized implicitly when a platform is created using a platform\nfactory such as PlatformBrowser, or explicitly by calling the createPlatform() function.

\n\n
Predicate\n \n

A boolean-valued function over a value, possibly including context information\nregarding that value's position in an array.

\n\n
RendererStyleFlags2\n \n

Flags for renderer-specific style modifiers.

\n\n
RendererType2\n \n

Used by RendererFactory2 to associate custom rendering data and styles\nwith a rendering implementation.

\n\n
ResolvedReflectiveProvider\n \n

An internal resolved representation of a Provider used by the Injector.

\n\n
SchemaMetadata\n \n

A schema definition associated with an NgModule.

\n\n
SecurityContext\n \n

A SecurityContext marks a location that has dangerous security implications, e.g. a DOM property\nlike innerHTML that could cause Cross Site Scripting (XSS) security bugs when improperly\nhandled.

\n\n
SimpleChanges\n \n

A hashtable of changes represented by SimpleChange objects stored\nat the declared property name they belong to on a Directive or Component. This is\nthe type passed to the ngOnChanges hook.

\n\n
StaticClassProvider\n \n

Configures the Injector to return an instance of useClass for a token.

\n\n
StaticClassSansProvider\n \n

Configures the Injector to return an instance of useClass for a token.\nBase for StaticClassProvider decorator.

\n\n
TrackByFunction\n \n

An optional function passed into the NgForOf directive that defines how to track\nchanges for items in an iterable.\nThe function takes the iteration index and item ID.\nWhen supplied, Angular tracks changes by the return value of the function.

\n\n
TypeDecorator\n \n

An interface implemented by all Angular type decorators, which allows them to be used as\ndecorators as well as Angular syntax.

\n\n
TypeProvider\n \n

Configures the Injector to return an instance of Type when `Type' is used as the token.

\n\n
ValueProvider\n \n

Configures the Injector to return a value for a token.

\n\n
ValueSansProvider\n \n

Configures the Injector to return a value for a token.\nBase for ValueProvider decorator.

\n\n
ViewEncapsulation\n \n

Defines template and style encapsulation options available for Component's Component.

\n\n
\n
\n \n\n \n \n \n\n \n \n \n\n \n \n \n
\n

Typeslink

\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
ANALYZE_FOR_ENTRY_COMPONENTS\n

Deprecated: Since 9.0.0. With Ivy, this property is no longer necessary.

\n\n

A DI token that you can use to create a virtual provider\nthat will populate the entryComponents field of components and NgModules\nbased on its useValue property value.\nAll components that are referenced in the useValue value (either directly\nor in a nested array or map) are added to the entryComponents property.

\n\n
APP_BOOTSTRAP_LISTENER\n \n

A DI token that provides a set of callbacks to\nbe called for every component that is bootstrapped.

\n\n
APP_ID\n \n

A DI token representing a unique string ID, used\nprimarily for prefixing application attributes and CSS styles when\nViewEncapsulation.Emulated is being used.

\n\n
APP_INITIALIZER\n \n

A DI token that you can use to provide\none or more initialization functions.

\n\n
COMPILER_OPTIONS\n \n

Token to provide CompilerOptions in the platform injector.

\n\n
CUSTOM_ELEMENTS_SCHEMA\n \n

Defines a schema that allows an NgModule to contain the following:

\n
    \n
  • Non-Angular elements named with dash case (-).
  • \n
  • Element properties named with dash case (-).\nDash case is the naming convention for custom elements.
  • \n
\n\n
CompilerOptions\n \n

Options for creating a compiler

\n\n
DEFAULT_CURRENCY_CODE\n \n

Provide this token to set the default currency code your application uses for\nCurrencyPipe when there is no currency code passed into it. This is only used by\nCurrencyPipe and has no relation to locale currency. Defaults to USD if not configured.

\n\n
INJECTOR\n \n

An InjectionToken that gets the current Injector for createInjector()-style injectors.

\n\n
InjectableProvider\n \n

Injectable providers used in @Injectable decorator.

\n\n
LOCALE_ID\n \n

Provide this token to set the locale of your application.\nIt is used for i18n extraction, by i18n pipes (DatePipe, I18nPluralPipe, CurrencyPipe,\nDecimalPipe and PercentPipe) and by ICU expressions.

\n\n
NO_ERRORS_SCHEMA\n \n

Defines a schema that allows any property on any element.

\n\n
NgIterable\n \n

A type describing supported iterable types.

\n\n
PACKAGE_ROOT_URL\n \n

A DI token that indicates the root directory of\nthe application

\n\n
PLATFORM_ID\n \n

A token that indicates an opaque platform ID.

\n\n
PLATFORM_INITIALIZER\n \n

A function that is executed when a platform is initialized.

\n\n
Provider\n \n

Describes how the Injector should be configured.

\n\n
StaticProvider\n \n

Describes how an Injector should be configured as static (that is, without reflection).\nA static provider provides tokens to an injector for various types of dependencies.

\n\n
TRANSLATIONS\n \n

Use this token at bootstrap to provide the content of your translation file (xtb,\nxlf or xlf2) when you want to translate your application in another language.

\n\n
TRANSLATIONS_FORMAT\n \n

Provide this token at bootstrap to set the format of your TRANSLATIONS: xtb,\nxlf or xlf2.

\n\n
defineInjectable\n

Deprecated: in v8, delete after v10. This API should be used only by generated code, and that\ncode should now use ɵɵdefineInjectable instead.

\n\n \n
getDebugNode\n \n \n
getModuleFactory\n \n

Returns the NgModuleFactory with the given id, if it exists and has been loaded.\nFactories for modules that do not specify an id cannot be retrieved. Throws if the module\ncannot be found.

\n\n
inject\n \n

Injects a token from the currently active injector.

\n\n
platformCore\n \n

This platform has to be included in any other platform

\n\n
\n
\n \n\n
\n
\n\n\n" }