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
|
|
|
|
*/
|
|
|
|
|
|
|
|
export {BrowserModule, platformBrowser} from './browser';
|
2016-12-08 21:44:28 -05:00
|
|
|
export {Meta, MetaDefinition} from './browser/meta';
|
2016-08-30 21:07:40 -04:00
|
|
|
export {Title} from './browser/title';
|
|
|
|
export {disableDebugTools, enableDebugTools} from './browser/tools/tools';
|
2017-09-11 03:18:55 -04:00
|
|
|
export {BrowserTransferStateModule, StateKey, TransferState, makeStateKey} from './browser/transfer_state';
|
2016-08-30 21:07:40 -04:00
|
|
|
export {By} from './dom/debug/by';
|
|
|
|
export {EVENT_MANAGER_PLUGINS, EventManager} from './dom/events/event_manager';
|
2018-05-16 13:00:33 -04:00
|
|
|
export {HAMMER_GESTURE_CONFIG, HAMMER_LOADER, HammerGestureConfig, HammerLoader} from './dom/events/hammer_gestures';
|
2017-04-14 17:40:56 -04:00
|
|
|
export {DomSanitizer, SafeHtml, SafeResourceUrl, SafeScript, SafeStyle, SafeUrl, SafeValue} from './security/dom_sanitization_service';
|
2018-05-16 13:00:33 -04:00
|
|
|
|
2016-12-06 19:21:07 -05:00
|
|
|
export * from './private_export';
|
|
|
|
export {VERSION} from './version';
|
2019-04-25 20:52:38 -04:00
|
|
|
// This must be exported so it doesn't get tree-shaken away prematurely
|
|
|
|
export {ELEMENT_PROBE_PROVIDERS__POST_R3__ as ɵELEMENT_PROBE_PROVIDERS__POST_R3__} from './dom/debug/ng_probe';
|