mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
51 lines
1.3 KiB
TypeScript
51 lines
1.3 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright Google LLC 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.dev/license
|
|
*/
|
|
|
|
export {
|
|
ApplicationConfig,
|
|
bootstrapApplication,
|
|
BrowserModule,
|
|
createApplication,
|
|
platformBrowser,
|
|
provideProtractorTestingSupport,
|
|
} from './browser';
|
|
export {Meta, MetaDefinition} from './browser/meta';
|
|
export {Title} from './browser/title';
|
|
export {disableDebugTools, enableDebugTools} from './browser/tools/tools';
|
|
export {By} from './dom/debug/by';
|
|
export {REMOVE_STYLES_ON_COMPONENT_DESTROY} from './dom/dom_renderer';
|
|
export {EVENT_MANAGER_PLUGINS, EventManager, EventManagerPlugin} from './dom/events/event_manager';
|
|
export {
|
|
HAMMER_GESTURE_CONFIG,
|
|
HAMMER_LOADER,
|
|
HammerGestureConfig,
|
|
HammerLoader,
|
|
HammerModule,
|
|
} from './dom/events/hammer_gestures';
|
|
export {
|
|
DomSanitizer,
|
|
SafeHtml,
|
|
SafeResourceUrl,
|
|
SafeScript,
|
|
SafeStyle,
|
|
SafeUrl,
|
|
SafeValue,
|
|
} from './security/dom_sanitization_service';
|
|
export {
|
|
HydrationFeature,
|
|
HydrationFeatureKind,
|
|
provideClientHydration,
|
|
withEventReplay,
|
|
withHttpTransferCacheOptions,
|
|
withI18nSupport,
|
|
withNoHttpTransferCache,
|
|
withIncrementalHydration,
|
|
} from './hydration';
|
|
|
|
export * from './private_export';
|
|
export {VERSION} from './version';
|