2015-11-05 14:58:24 -08:00
|
|
|
/**
|
|
|
|
* @module
|
|
|
|
* @description
|
|
|
|
* Common directives shipped with Angular.
|
|
|
|
*/
|
|
|
|
export {NgClass} from './directives/ng_class';
|
|
|
|
export {NgFor} from './directives/ng_for';
|
|
|
|
export {NgIf} from './directives/ng_if';
|
2016-04-11 17:47:28 +02:00
|
|
|
export {NgTemplateOutlet} from './directives/ng_template_outlet';
|
2015-11-05 14:58:24 -08:00
|
|
|
export {NgStyle} from './directives/ng_style';
|
|
|
|
export {NgSwitch, NgSwitchWhen, NgSwitchDefault} from './directives/ng_switch';
|
2016-03-04 16:32:22 -08:00
|
|
|
export {NgPlural, NgPluralCase, NgLocalization} from './directives/ng_plural';
|
|
|
|
export {CORE_DIRECTIVES} from './directives/core_directives';
|