2015-07-07 02:15:58 -04:00
|
|
|
/**
|
|
|
|
* The `angular2` is the single place to import all of the individual types.
|
|
|
|
*/
|
2015-07-22 13:18:04 -04:00
|
|
|
export {commonBootstrap as bootstrap} from 'angular2/src/core/application_common';
|
|
|
|
|
|
|
|
// TODO(someone familiar with systemjs): the exports below are copied from
|
|
|
|
// angular2_exports.ts. Re-exporting from angular2_exports.ts causes systemjs
|
|
|
|
// to resolve imports very very very slowly. See also a similar notice in
|
|
|
|
// bootstrap.ts
|
2015-07-11 11:26:48 -04:00
|
|
|
export * from './annotations';
|
|
|
|
export * from './core';
|
|
|
|
export * from './change_detection';
|
2015-07-08 15:04:24 -04:00
|
|
|
export * from './di';
|
|
|
|
export * from './forms';
|
2015-02-05 16:08:05 -05:00
|
|
|
export * from './directives';
|
2015-06-09 18:18:57 -04:00
|
|
|
export * from './http';
|
2015-07-08 15:04:24 -04:00
|
|
|
export {
|
2015-06-24 16:46:39 -04:00
|
|
|
RenderEventDispatcher,
|
2015-07-08 15:04:24 -04:00
|
|
|
Renderer,
|
|
|
|
RenderElementRef,
|
|
|
|
RenderViewRef,
|
2015-06-24 16:46:39 -04:00
|
|
|
RenderProtoViewRef,
|
|
|
|
RenderFragmentRef,
|
|
|
|
RenderViewWithFragments
|
2015-07-08 15:04:24 -04:00
|
|
|
} from 'angular2/src/render/api';
|
2015-07-15 13:55:44 -04:00
|
|
|
export {
|
|
|
|
DomRenderer,
|
|
|
|
DOCUMENT_TOKEN,
|
|
|
|
DOM_REFLECT_PROPERTIES_AS_ATTRIBUTES
|
|
|
|
} from 'angular2/src/render/dom/dom_renderer';
|