2015-07-07 06:15:58 +00:00
|
|
|
/**
|
|
|
|
|
* The `angular2` is the single place to import all of the individual types.
|
|
|
|
|
*/
|
2015-07-22 17:18:04 +00: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 15:26:48 +00:00
|
|
|
export * from './annotations';
|
|
|
|
|
export * from './core';
|
|
|
|
|
export * from './change_detection';
|
2015-07-08 19:04:24 +00:00
|
|
|
export * from './di';
|
|
|
|
|
export * from './forms';
|
2015-02-05 21:08:05 +00:00
|
|
|
export * from './directives';
|
2015-06-09 22:18:57 +00:00
|
|
|
export * from './http';
|
2015-07-08 19:04:24 +00:00
|
|
|
export {
|
2015-06-24 20:46:39 +00:00
|
|
|
RenderEventDispatcher,
|
2015-07-08 19:04:24 +00:00
|
|
|
Renderer,
|
|
|
|
|
RenderElementRef,
|
|
|
|
|
RenderViewRef,
|
2015-06-24 20:46:39 +00:00
|
|
|
RenderProtoViewRef,
|
|
|
|
|
RenderFragmentRef,
|
|
|
|
|
RenderViewWithFragments
|
2015-07-08 19:04:24 +00:00
|
|
|
} from 'angular2/src/render/api';
|
2015-07-15 17:55:44 +00:00
|
|
|
export {
|
|
|
|
|
DomRenderer,
|
|
|
|
|
DOCUMENT_TOKEN,
|
|
|
|
|
DOM_REFLECT_PROPERTIES_AS_ATTRIBUTES
|
|
|
|
|
} from 'angular2/src/render/dom/dom_renderer';
|