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';
|
|
|
|
export {By} from './dom/debug/by';
|
|
|
|
export {DOCUMENT} from './dom/dom_tokens';
|
|
|
|
export {EVENT_MANAGER_PLUGINS, EventManager} from './dom/events/event_manager';
|
|
|
|
export {HAMMER_GESTURE_CONFIG, HammerGestureConfig} 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';
|
2016-12-06 19:21:07 -05:00
|
|
|
export * from './private_export';
|
|
|
|
export {VERSION} from './version';
|