2015-11-05 22:58:24 +00:00
|
|
|
/**
|
|
|
|
|
* @module
|
|
|
|
|
* @description
|
|
|
|
|
* Common directives shipped with Angular.
|
|
|
|
|
*/
|
2016-06-08 23:38:52 +00:00
|
|
|
export {CORE_DIRECTIVES} from './directives/core_directives';
|
2015-11-05 22:58:24 +00:00
|
|
|
export {NgClass} from './directives/ng_class';
|
|
|
|
|
export {NgFor} from './directives/ng_for';
|
|
|
|
|
export {NgIf} from './directives/ng_if';
|
2016-06-08 23:38:52 +00:00
|
|
|
export {NgLocalization, NgPlural, NgPluralCase} from './directives/ng_plural';
|
2015-11-05 22:58:24 +00:00
|
|
|
export {NgStyle} from './directives/ng_style';
|
2016-06-10 05:52:30 +00:00
|
|
|
export {NgSwitch, NgSwitchCase, NgSwitchDefault} from './directives/ng_switch';
|
2016-06-08 23:38:52 +00:00
|
|
|
export {NgTemplateOutlet} from './directives/ng_template_outlet';
|