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