35 lines
837 B
TypeScript
35 lines
837 B
TypeScript
export {DomEventsPlugin} from './dom/events/dom_events';
|
|
export {KeyEventsPlugin} from './dom/events/key_events';
|
|
|
|
export {EventManager, EVENT_MANAGER_PLUGINS} from './dom/events/event_manager';
|
|
export {ELEMENT_PROBE_PROVIDERS} from './dom/debug/ng_probe';
|
|
export {
|
|
BROWSER_APP_COMMON_PROVIDERS,
|
|
BROWSER_SANITIZATION_PROVIDERS,
|
|
BROWSER_PROVIDERS,
|
|
By,
|
|
Title,
|
|
enableDebugTools,
|
|
disableDebugTools,
|
|
HAMMER_GESTURE_CONFIG,
|
|
HammerGestureConfig
|
|
} from './browser_common';
|
|
|
|
export {DOCUMENT} from './dom/dom_tokens';
|
|
|
|
export {
|
|
DomSanitizationService,
|
|
SafeHtml,
|
|
SafeScript,
|
|
SafeStyle,
|
|
SafeUrl,
|
|
SafeResourceUrl,
|
|
SecurityContext
|
|
} from './security/dom_sanitization_service';
|
|
|
|
export {
|
|
bootstrapStatic,
|
|
browserPlatform,
|
|
BROWSER_APP_STATIC_PROVIDERS,
|
|
BrowserPlatformLocation
|
|
} from './platform_browser_static'; |