feat(coreDirectives): add NgClass to coreDirectives

Closes #3534
This commit is contained in:
Pawel Kozlowski 2015-08-07 16:18:26 +02:00
parent 4f5e405676
commit 6bd95c1455
1 changed files with 2 additions and 1 deletions

View File

@ -5,6 +5,7 @@
*/
import {CONST_EXPR, Type} from './src/facade/lang';
import {NgClass} from './src/directives/ng_class';
import {NgFor} from './src/directives/ng_for';
import {NgIf} from './src/directives/ng_if';
import {NgNonBindable} from './src/directives/ng_non_bindable';
@ -60,4 +61,4 @@ export * from './src/directives/ng_switch';
*
*/
export const coreDirectives: List<Type> =
CONST_EXPR([NgFor, NgIf, NgNonBindable, NgSwitch, NgSwitchWhen, NgSwitchDefault]);
CONST_EXPR([NgClass, NgFor, NgIf, NgNonBindable, NgSwitch, NgSwitchWhen, NgSwitchDefault]);