2015-04-10 11:15:01 -07:00
|
|
|
/**
|
|
|
|
* @module
|
|
|
|
* @description
|
2015-09-03 22:01:36 -07:00
|
|
|
* Starting point to import all public core APIs.
|
2015-04-10 11:15:01 -07:00
|
|
|
*/
|
2015-09-03 22:01:36 -07:00
|
|
|
export * from './src/core/metadata';
|
|
|
|
export * from './src/core/util';
|
2015-12-15 08:34:44 -08:00
|
|
|
export * from './src/core/prod_mode';
|
2015-09-03 22:01:36 -07:00
|
|
|
export * from './src/core/di';
|
2015-11-06 17:34:07 -08:00
|
|
|
export * from './src/facade/facade';
|
2015-12-15 08:34:44 -08:00
|
|
|
export {enableProdMode} from 'angular2/src/facade/lang';
|
2015-11-13 11:21:16 -08:00
|
|
|
export {platform, createNgZone, PlatformRef, ApplicationRef} from './src/core/application_ref';
|
2015-11-18 09:18:37 -08:00
|
|
|
export {
|
|
|
|
APP_ID,
|
|
|
|
APP_COMPONENT,
|
|
|
|
APP_INITIALIZER,
|
2015-12-05 02:21:38 -08:00
|
|
|
PACKAGE_ROOT_URL,
|
2015-11-18 09:18:37 -08:00
|
|
|
PLATFORM_INITIALIZER
|
|
|
|
} from './src/core/application_tokens';
|
2015-09-03 22:01:36 -07:00
|
|
|
export * from './src/core/zone';
|
|
|
|
export * from './src/core/render';
|
2015-11-18 15:55:43 -08:00
|
|
|
export * from './src/core/linker';
|
2016-01-29 13:30:36 -08:00
|
|
|
export {DebugElement, DebugNode, asNativeElements} from './src/core/debug/debug_node';
|
2015-11-17 15:24:36 -08:00
|
|
|
export * from './src/core/testability/testability';
|
2015-09-03 22:01:36 -07:00
|
|
|
export * from './src/core/change_detection';
|
2015-11-09 14:33:22 -08:00
|
|
|
export * from './src/core/platform_directives_and_pipes';
|
2015-11-13 11:21:16 -08:00
|
|
|
export * from './src/core/platform_common_providers';
|
2015-11-18 15:55:43 -08:00
|
|
|
export * from './src/core/application_common_providers';
|
2015-12-05 02:21:38 -08:00
|
|
|
export * from './src/core/reflection/reflection';
|