Victor Berchet 3d38ec8aac refactor(Lifecycle hooks): move the hooks to their own module (lifecycle_hooks)
BREAKING CHANGE

Lifecycle hooks now live in the `angular2/lifecycle_hooks` module.
They previously lived in the `metadata` module.
2015-09-05 01:02:33 +00:00

19 lines
639 B
TypeScript

/**
* The `angular2` is the single place to import all of the individual types.
*/
// 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
export * from './metadata';
export * from './change_detection';
export * from './core';
export * from './di';
export * from './directives';
export * from './forms';
export * from './render';
export * from './profile';
export {bootstrap} from 'angular2/src/core/application';
export * from './lifecycle_hooks';