2015-03-17 19:29:27 -04:00
|
|
|
/**
|
2015-04-10 06:45:02 -04:00
|
|
|
* @module
|
|
|
|
* @description
|
2015-04-10 14:15:01 -04:00
|
|
|
*
|
2015-05-20 20:19:46 -04:00
|
|
|
* Annotations provide the additional information that Angular requires in order to run your
|
|
|
|
* application. This module
|
2015-06-02 00:36:06 -04:00
|
|
|
* contains {@link Component}, {@link Directive}, and {@link View} annotations, as well as
|
2015-07-29 14:26:09 -04:00
|
|
|
* the {@link Host} annotation that is used by Angular to resolve dependencies.
|
2015-04-10 14:15:01 -04:00
|
|
|
*
|
2015-03-17 19:29:27 -04:00
|
|
|
*/
|
2015-07-07 02:15:58 -04:00
|
|
|
|
|
|
|
export {
|
|
|
|
ComponentAnnotation,
|
|
|
|
DirectiveAnnotation,
|
2015-07-04 09:04:50 -04:00
|
|
|
LifecycleEvent
|
2015-07-07 02:15:58 -04:00
|
|
|
} from './src/core/annotations/annotations';
|
|
|
|
|
2015-07-24 18:28:44 -04:00
|
|
|
export {ViewAnnotation, ViewEncapsulation} from 'angular2/src/core/annotations/view';
|
2015-07-07 02:15:58 -04:00
|
|
|
export {QueryAnnotation, AttributeAnnotation} from 'angular2/src/core/annotations/di';
|
|
|
|
|
|
|
|
export {
|
|
|
|
OnAllChangesDone,
|
|
|
|
OnChange,
|
|
|
|
OnDestroy,
|
|
|
|
OnInit,
|
|
|
|
OnCheck
|
|
|
|
} from 'angular2/src/core/compiler/interfaces';
|
|
|
|
|
|
|
|
|
2015-07-29 23:09:54 -04:00
|
|
|
export {Class, ClassDefinition, TypeDecorator} from 'angular2/src/util/decorators';
|
2015-07-07 02:15:58 -04:00
|
|
|
|
|
|
|
export {
|
|
|
|
Attribute,
|
|
|
|
AttributeFactory,
|
|
|
|
Component,
|
|
|
|
ComponentDecorator,
|
|
|
|
ComponentFactory,
|
|
|
|
Directive,
|
|
|
|
DirectiveDecorator,
|
|
|
|
DirectiveFactory,
|
|
|
|
View,
|
|
|
|
ViewDecorator,
|
|
|
|
ViewFactory,
|
|
|
|
Query,
|
2015-07-10 13:30:31 -04:00
|
|
|
QueryFactory,
|
|
|
|
ViewQuery
|
2015-07-07 02:15:58 -04:00
|
|
|
} from 'angular2/src/core/annotations/decorators';
|