chore(docs): adding docs to core.ts and annotations.ts

This commit is contained in:
Misko Hevery
2015-07-07 08:15:58 +02:00
committed by Alex Eagle
parent 12a427e158
commit 3ab8a0c438
22 changed files with 870 additions and 58 deletions

View File

@ -1,3 +1,10 @@
/**
* The `angular2` is the single place to import all of the individual types.
*/
export * from 'angular2/annotations';
export * from 'angular2/core';
// TO BE CLEANED UP.
export {
DehydratedException,
ExpressionChangedAfterItHasBeenChecked,
@ -60,8 +67,6 @@ export {
DependencyProvider
} from './di';
export * from './core';
export * from './annotations';
export * from './directives';
export {
@ -89,6 +94,5 @@ export {
} from './forms';
export * from './http';
export {Observable, EventEmitter} from 'angular2/src/facade/async';
export * from 'angular2/src/render/api';
export {DomRenderer, DOCUMENT_TOKEN} from 'angular2/src/render/dom/dom_renderer';