457c15cd6c
In 'angular2/di' the symbol: - Inject is a decorator - InjectAnnotation is an annotation Internally one an get a hold of annotations without *Annotations appened (to make ts2dart work without workarounds) by importing from 'angular2/src/di/annotations_impl' instead of 'angular2/di'. This is needed only for users that transpile through TS and through ts2dart.
13 lines
465 B
JavaScript
13 lines
465 B
JavaScript
/**
|
|
* @module
|
|
* @public
|
|
* @description
|
|
*
|
|
* Annotations provide the additional information that Angular requires in order to run your application. This module
|
|
* contains {@link Component}, {@link Directive}, and {@link View} annotations, as well as {@link Parent} and {@link Ancestor} annotations that are
|
|
* used by Angular to resolve dependencies.
|
|
*
|
|
*/
|
|
export * from './src/core/annotations/annotations';
|
|
export * from './src/core/annotations/decorators';
|