/** * @license * Copyright Google Inc. All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ /** * @module * @description * Common directives shipped with Angular. */ export { CORE_DIRECTIVES } from './directives/core_directives'; export { NgClass } from './directives/ng_class'; export { NgFor } from './directives/ng_for'; export { NgIf } from './directives/ng_if'; export { NgPlural, NgPluralCase } from './directives/ng_plural'; export { NgStyle } from './directives/ng_style'; export { NgSwitch, NgSwitchCase, NgSwitchDefault } from './directives/ng_switch'; export { NgTemplateOutlet } from './directives/ng_template_outlet';