2015-04-10 18:15:01 +00:00
|
|
|
/**
|
|
|
|
|
* @module
|
|
|
|
|
* @description
|
2015-09-04 05:01:36 +00:00
|
|
|
* Starting point to import all public core APIs.
|
2015-04-10 18:15:01 +00:00
|
|
|
*/
|
2015-09-04 05:01:36 +00:00
|
|
|
export * from './src/core/metadata';
|
|
|
|
|
export * from './src/core/util';
|
|
|
|
|
export * from './src/core/di';
|
2015-11-05 22:58:24 +00:00
|
|
|
export * from './src/common/pipes';
|
2015-11-07 01:34:07 +00:00
|
|
|
export * from './src/facade/facade';
|
2015-09-04 05:01:36 +00:00
|
|
|
export * from './src/core/services';
|
2015-10-02 14:37:23 +00:00
|
|
|
export * from './src/core/linker';
|
2015-11-13 19:21:16 +00:00
|
|
|
export {platform, createNgZone, PlatformRef, ApplicationRef} from './src/core/application_ref';
|
|
|
|
|
export {APP_ID, APP_COMPONENT} from './src/core/application_tokens';
|
2015-09-04 05:01:36 +00:00
|
|
|
export * from './src/core/zone';
|
|
|
|
|
export * from './src/core/render';
|
2015-11-05 22:58:24 +00:00
|
|
|
export * from './src/common/directives';
|
|
|
|
|
export * from './src/common/forms';
|
2015-09-04 05:01:36 +00:00
|
|
|
export * from './src/core/debug';
|
|
|
|
|
export * from './src/core/change_detection';
|
2015-11-09 22:33:22 +00:00
|
|
|
export * from './src/core/platform_directives_and_pipes';
|
2015-11-03 23:19:18 +00:00
|
|
|
export * from './src/core/dev_mode';
|
2015-11-13 19:21:16 +00:00
|
|
|
export * from './src/core/reflection/reflection';
|
|
|
|
|
export * from './src/core/application_common_providers';
|
|
|
|
|
export * from './src/core/platform_common_providers';
|