2016-06-23 09:47:54 -07:00
|
|
|
/**
|
|
|
|
* @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
|
|
|
|
*/
|
|
|
|
|
2015-11-05 14:58:24 -08:00
|
|
|
/**
|
|
|
|
* @module
|
|
|
|
* @description
|
|
|
|
* Common directives shipped with Angular.
|
|
|
|
*/
|
2016-06-08 16:38:52 -07:00
|
|
|
export {CORE_DIRECTIVES} from './directives/core_directives';
|
2015-11-05 14:58:24 -08:00
|
|
|
export {NgClass} from './directives/ng_class';
|
|
|
|
export {NgFor} from './directives/ng_for';
|
|
|
|
export {NgIf} from './directives/ng_if';
|
2016-06-08 16:38:52 -07:00
|
|
|
export {NgLocalization, NgPlural, NgPluralCase} from './directives/ng_plural';
|
2015-11-05 14:58:24 -08:00
|
|
|
export {NgStyle} from './directives/ng_style';
|
2016-06-09 22:52:30 -07:00
|
|
|
export {NgSwitch, NgSwitchCase, NgSwitchDefault} from './directives/ng_switch';
|
2016-06-08 16:38:52 -07:00
|
|
|
export {NgTemplateOutlet} from './directives/ng_template_outlet';
|