# Conflicts: # aio/content/cli/index.md # aio/content/file-not-found.md # aio/content/guide/architecture-modules.md # aio/content/guide/architecture-services.md # aio/content/guide/build.md # aio/content/guide/deployment.md # aio/content/guide/elements.md # aio/content/guide/feature-modules.md # aio/content/guide/file-structure.md # aio/content/guide/forms-overview.md # aio/content/guide/glossary.md # aio/content/guide/i18n.md # aio/content/guide/npm-packages.md # aio/content/guide/releases.md # aio/content/guide/router.md # aio/content/guide/service-worker-config.md # aio/content/guide/service-worker-intro.md # aio/content/guide/testing.md # aio/content/guide/upgrade-performance.md # aio/content/navigation.json # aio/content/tutorial/toh-pt0.md # aio/content/tutorial/toh-pt5.md # aio/content/tutorial/toh-pt6.md # aio/package.json # aio/src/app/custom-elements/api/api-list.component.ts # aio/src/app/documents/document.service.ts # aio/src/app/layout/top-menu/top-menu.component.ts # aio/src/index.html # aio/src/styles/2-modules/_api-pages.scss # aio/tools/transforms/templates/api/base.template.html # aio/tools/transforms/templates/api/lib/memberHelpers.html # aio/tools/transforms/templates/cli/cli-container.template.html # aio/tools/transforms/templates/lib/githubLinks.html # aio/yarn.lock # packages/animations/src/animation_metadata.ts # packages/common/http/src/backend.ts # packages/common/http/src/client.ts # packages/common/http/src/headers.ts # packages/common/http/src/interceptor.ts # packages/common/http/src/module.ts # packages/common/http/src/params.ts # packages/common/http/src/request.ts # packages/common/http/src/response.ts # packages/common/src/common_module.ts # packages/common/src/directives/ng_class.ts # packages/common/src/directives/ng_style.ts # packages/common/src/directives/ng_switch.ts # packages/common/src/i18n/format_date.ts # packages/common/src/pipes/number_pipe.ts # packages/core/src/change_detection/change_detection_util.ts # packages/core/src/change_detection/pipe_transform.ts # packages/core/src/di/injectable.ts # packages/core/src/linker/element_ref.ts # packages/core/src/linker/template_ref.ts # packages/core/src/metadata/di.ts # packages/core/src/metadata/directives.ts # packages/core/src/metadata/lifecycle_hooks.ts # packages/core/src/metadata/ng_module.ts # packages/core/src/render/api.ts # packages/forms/src/directives/form_interface.ts # packages/forms/src/directives/ng_form.ts # packages/forms/src/directives/ng_model.ts # packages/forms/src/directives/reactive_directives/form_control_name.ts # packages/forms/src/directives/select_control_value_accessor.ts # packages/forms/src/directives/validators.ts # packages/forms/src/form_builder.ts # packages/forms/src/form_providers.ts # packages/forms/src/model.ts # packages/forms/src/validators.ts # packages/platform-browser/src/browser.ts # packages/platform-browser/src/security/dom_sanitization_service.ts # packages/router/src/config.ts # packages/router/src/events.ts # packages/router/src/router.ts # packages/router/src/router_module.ts # packages/router/src/shared.ts
73 lines
2.5 KiB
TypeScript
73 lines
2.5 KiB
TypeScript
/**
|
|
* @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
|
|
*/
|
|
|
|
|
|
import * as animations from '@angular/animations';
|
|
import * as animationsBrowser from '@angular/animations/browser';
|
|
import * as animationsBrowserTesting from '@angular/animations/browser/testing';
|
|
import * as common from '@angular/common';
|
|
import * as commonHttp from '@angular/common/http';
|
|
import * as commonTesting from '@angular/common/testing';
|
|
import * as commonHttpTesting from '@angular/common/testing';
|
|
import * as compiler from '@angular/compiler';
|
|
import * as compilerTesting from '@angular/compiler/testing';
|
|
import * as core from '@angular/core';
|
|
import * as coreTesting from '@angular/core/testing';
|
|
import * as elements from '@angular/elements';
|
|
import * as forms from '@angular/forms';
|
|
import * as http from '@angular/http';
|
|
import * as httpTesting from '@angular/http/testing';
|
|
import * as platformBrowser from '@angular/platform-browser';
|
|
import * as platformBrowserDynamic from '@angular/platform-browser-dynamic';
|
|
import * as platformBrowserDynamicTesting from '@angular/platform-browser-dynamic/testing';
|
|
import * as platformBrowserAnimations from '@angular/platform-browser/animations';
|
|
import * as platformBrowserTesting from '@angular/platform-browser/testing';
|
|
import * as platformServer from '@angular/platform-server';
|
|
import * as platformServerTesting from '@angular/platform-server/testing';
|
|
import * as platformWebworker from '@angular/platform-webworker';
|
|
import * as platformWebworkerDynamic from '@angular/platform-webworker-dynamic';
|
|
import * as router from '@angular/router';
|
|
import * as routerTesting from '@angular/router/testing';
|
|
import * as routerUpgrade from '@angular/router/upgrade';
|
|
import * as serviceWorker from '@angular/service-worker';
|
|
import * as upgrade from '@angular/upgrade';
|
|
import * as upgradeStatic from '@angular/upgrade/static';
|
|
|
|
export default {
|
|
animations,
|
|
animationsBrowser,
|
|
animationsBrowserTesting,
|
|
common,
|
|
commonTesting,
|
|
commonHttp,
|
|
commonHttpTesting,
|
|
compiler,
|
|
compilerTesting,
|
|
core,
|
|
coreTesting,
|
|
elements,
|
|
forms,
|
|
http,
|
|
httpTesting,
|
|
platformBrowser,
|
|
platformBrowserTesting,
|
|
platformBrowserDynamic,
|
|
platformBrowserDynamicTesting,
|
|
platformBrowserAnimations,
|
|
platformServer,
|
|
platformServerTesting,
|
|
platformWebworker,
|
|
platformWebworkerDynamic,
|
|
router,
|
|
routerTesting,
|
|
routerUpgrade,
|
|
serviceWorker,
|
|
upgrade,
|
|
upgradeStatic
|
|
};
|