Answers for "What NgModule decorator metadata property is leveraged to allow other NgModules to use components,directives and pipes from the NgModule"

0

What NgModule decorator metadata property is leveraged to allow other NgModules to use components,directives and pipes from the NgModule

@NgModule takes a metadata object that describes how to compile a component's template and how to create an injector at runtime. It identifies the module's own components, directives, and pipes, making some of them public, through the exports property, so that external components can use them.
Posted by: Guest on April-22-2022

Code answers related to "What NgModule decorator metadata property is leveraged to allow other NgModules to use components,directives and pipes from the NgModule"

Browse Popular Code Answers by Language