CommonModule

Stable Class

Class Overview

class CommonModule {
}

Class Description

The module that includes all the basic Angular directives like NgIf, NgFor, ...

Annotations

@NgModule({
  declarations: [COMMON_DIRECTIVES, COMMON_PIPES],
  exports: [COMMON_DIRECTIVES, COMMON_PIPES],
  providers: [
    {provide: NgLocalization, useClass: NgLocaleLocalization},
  ],
})

exported from @angular/common/index, defined in @angular/common/src/common_module.ts

doc_Angular
2016-10-06 09:46:20
Comments
Leave a Comment

Please login to continue.