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';
|
2015-12-15 11:34:44 -05:00
|
|
|
export * from './src/core/prod_mode';
|
2015-09-04 01:01:36 -04:00
|
|
|
export * from './src/core/di';
|
2015-11-06 20:34:07 -05:00
|
|
|
export * from './src/facade/facade';
|
2015-12-15 11:34:44 -05:00
|
|
|
export {enableProdMode} from 'angular2/src/facade/lang';
|
2015-11-13 14:21:16 -05:00
|
|
|
export {platform, createNgZone, PlatformRef, ApplicationRef} from './src/core/application_ref';
|
2015-11-18 12:18:37 -05:00
|
|
|
export {
|
|
|
|
APP_ID,
|
|
|
|
APP_COMPONENT,
|
|
|
|
APP_INITIALIZER,
|
2015-12-05 05:21:38 -05:00
|
|
|
PACKAGE_ROOT_URL,
|
2015-11-18 12:18:37 -05:00
|
|
|
PLATFORM_INITIALIZER
|
|
|
|
} 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-18 18:55:43 -05:00
|
|
|
export * from './src/core/linker';
|
2016-01-29 16:30:36 -05:00
|
|
|
export {DebugElement, DebugNode, asNativeElements} from './src/core/debug/debug_node';
|
2015-11-17 18:24:36 -05:00
|
|
|
export * from './src/core/testability/testability';
|
2015-09-04 01:01:36 -04:00
|
|
|
export * from './src/core/change_detection';
|
2015-11-09 17:33:22 -05:00
|
|
|
export * from './src/core/platform_directives_and_pipes';
|
2015-11-13 14:21:16 -05:00
|
|
|
export * from './src/core/platform_common_providers';
|
2015-11-18 18:55:43 -05:00
|
|
|
export * from './src/core/application_common_providers';
|
2015-12-05 05:21:38 -05:00
|
|
|
export * from './src/core/reflection/reflection';
|