chore(docs): adding docs to core.ts and annotations.ts
This commit is contained in:
@ -4,19 +4,35 @@
|
||||
* @description
|
||||
* Define angular core API here.
|
||||
*/
|
||||
export * from './src/core/annotations/view';
|
||||
export * from './src/core/application';
|
||||
export * from './src/core/application_tokens';
|
||||
export * from './src/core/annotations/di';
|
||||
export {bootstrap, ApplicationRef} from 'angular2/src/core/application';
|
||||
export {appComponentTypeToken} from 'angular2/src/core/application_tokens';
|
||||
|
||||
export * from './src/core/compiler/compiler';
|
||||
export * from './src/core/compiler/interfaces';
|
||||
export * from './src/core/compiler/query_list';
|
||||
export * from './src/core/compiler/directive_resolver';
|
||||
export * from './src/core/compiler/dynamic_component_loader';
|
||||
export {ViewRef, ProtoViewRef} from './src/core/compiler/view_ref';
|
||||
export {ViewContainerRef} from './src/core/compiler/view_container_ref';
|
||||
export {ElementRef} from './src/core/compiler/element_ref';
|
||||
export {EventEmitter} from './src/facade/async';
|
||||
|
||||
export {NgZone} from './src/core/zone/ng_zone';
|
||||
// Compiler Related Dependencies.
|
||||
export {AppRootUrl} from 'angular2/src/services/app_root_url';
|
||||
export {UrlResolver} from 'angular2/src/services/url_resolver';
|
||||
export {ComponentUrlMapper} from 'angular2/src/core/compiler/component_url_mapper';
|
||||
export {DirectiveResolver} from 'angular2/src/core/compiler/directive_resolver';
|
||||
export {Compiler} from 'angular2/src/core/compiler/compiler';
|
||||
|
||||
export {AppViewManager} from 'angular2/src/core/compiler/view_manager';
|
||||
export {QueryList} from 'angular2/src/core/compiler/query_list';
|
||||
export {ElementRef} from 'angular2/src/core/compiler/element_ref';
|
||||
export {RenderElementRef} from 'angular2/src/render/api';
|
||||
export {ViewRef, ProtoViewRef} from 'angular2/src/core/compiler/view_ref';
|
||||
export {ViewContainerRef} from 'angular2/src/core/compiler/view_container_ref';
|
||||
|
||||
export {
|
||||
DynamicComponentLoader,
|
||||
ComponentRef
|
||||
} from 'angular2/src/core/compiler/dynamic_component_loader';
|
||||
|
||||
export {NgZone} from 'angular2/src/core/zone/ng_zone';
|
||||
export {Observable, EventEmitter} from 'angular2/src/facade/async';
|
||||
|
||||
|
||||
// TODO(misko): remove exporting of these.
|
||||
// This should not be exported once we have: https://github.com/angular/angular/issues/2883
|
||||
export {ProtoViewFactory} from 'angular2/src/core/compiler/proto_view_factory';
|
||||
export {RenderCompiler} from 'angular2/src/render/api';
|
||||
export {CompilerCache} from 'angular2/src/core/compiler/compiler';
|
||||
|
Reference in New Issue
Block a user