2016-08-30 21:07:40 -04:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @module
|
|
|
|
* @description
|
|
|
|
* Entry point from which you should import all public core APIs.
|
|
|
|
*/
|
|
|
|
export * from './metadata';
|
2016-11-30 16:52:08 -05:00
|
|
|
export * from './version';
|
2017-08-08 17:03:27 -04:00
|
|
|
export {TypeDecorator} from './util/decorators';
|
2016-08-30 21:07:40 -04:00
|
|
|
export * from './di';
|
2016-11-09 17:58:40 -05:00
|
|
|
export {createPlatform, assertPlatform, destroyPlatform, getPlatform, PlatformRef, ApplicationRef, enableProdMode, isDevMode, createPlatformFactory, NgProbeToken} from './application_ref';
|
2017-02-22 19:49:46 -05:00
|
|
|
export {APP_ID, PACKAGE_ROOT_URL, PLATFORM_INITIALIZER, PLATFORM_ID, APP_BOOTSTRAP_LISTENER} from './application_tokens';
|
2016-08-30 21:07:40 -04:00
|
|
|
export {APP_INITIALIZER, ApplicationInitStatus} from './application_init';
|
|
|
|
export * from './zone';
|
|
|
|
export * from './render';
|
|
|
|
export * from './linker';
|
2017-03-01 17:10:59 -05:00
|
|
|
export {DebugElement, DebugNode, asNativeElements, getDebugNode, Predicate} from './debug/debug_node';
|
2016-08-30 21:07:40 -04:00
|
|
|
export {GetTestability, Testability, TestabilityRegistry, setTestabilityGetter} from './testability/testability';
|
|
|
|
export * from './change_detection';
|
|
|
|
export * from './platform_core_providers';
|
2017-01-26 02:26:49 -05:00
|
|
|
export {TRANSLATIONS, TRANSLATIONS_FORMAT, LOCALE_ID, MissingTranslationStrategy} from './i18n/tokens';
|
2016-08-30 21:07:40 -04:00
|
|
|
export {ApplicationModule} from './application_module';
|
|
|
|
export {wtfCreateScope, wtfLeave, wtfStartTimeRange, wtfEndTimeRange, WtfScopeFn} from './profile/profile';
|
|
|
|
export {Type} from './type';
|
2017-03-01 13:28:52 -05:00
|
|
|
export {EventEmitter} from './event_emitter';
|
2016-08-30 21:07:40 -04:00
|
|
|
export {ErrorHandler} from './error_handler';
|
|
|
|
export * from './core_private_export';
|
2017-12-19 18:01:05 -05:00
|
|
|
export * from './core_render3_private_export';
|
2018-03-01 16:16:13 -05:00
|
|
|
export {Sanitizer, SecurityContext} from './sanitization/security';
|
2017-02-14 16:33:06 -05:00
|
|
|
export * from './codegen_private_exports';
|