docs: add ngmodule api doc (#25618)

PR Close #25618
This commit is contained in:
Judy Bogart 2018-08-22 08:52:19 -07:00 committed by Ben Lesh
parent f91b0455c0
commit dd5e35ee67
6 changed files with 53 additions and 21 deletions

View File

@ -76,7 +76,7 @@ export function jsonpCallbackContext(): Object {
} }
/** /**
* An NgModule that adds XSRF protection support to outgoing requests. * Configures XSRF protection support for outgoing requests.
* *
* For a server that supports a cookie-based XSRF protection system, * For a server that supports a cookie-based XSRF protection system,
* use directly to configure XSRF protection with the correct * use directly to configure XSRF protection with the correct
@ -132,10 +132,11 @@ export class HttpClientXsrfModule {
} }
/** /**
* An NgModule that provides the `HttpClient` and associated services. * Configures the [dependency injector](guide/glossary#injector) for `HttpClient`
* with supporting services for XSRF. Automatically imported by `HttpClientModule`.
* *
* Interceptors can be added to the chain behind `HttpClient` by binding them * You can add interceptors to the chain behind `HttpClient` by binding them to the
* to the multiprovider for `HTTP_INTERCEPTORS`. * multiprovider for built-in [DI token](guide/glossary#di-token) `HTTP_INTERCEPTORS`.
* *
* *
*/ */
@ -150,7 +151,8 @@ export class HttpClientXsrfModule {
}), }),
], ],
/** /**
* The module provides `HttpClient` itself, and supporting services. * Configures the [dependency injector](guide/glossary#injector) where it is imported
* with supporting services for HTTP communications.
*/ */
providers: [ providers: [
HttpClient, HttpClient,
@ -165,10 +167,13 @@ export class HttpClientModule {
} }
/** /**
* An NgModule that enables JSONP support in `HttpClient`. * Configures the [dependency injector](guide/glossary#injector) for `HttpClient`
* with supporting services for JSONP.
* Without this module, Jsonp requests reach the backend
* with method JSONP, where they are rejected.
* *
* Without this module, Jsonp requests will reach the backend * You can add interceptors to the chain behind `HttpClient` by binding them to the
* with method JSONP, where they'll be rejected. * multiprovider for built-in [DI token](guide/glossary#di-token) `HTTP_INTERCEPTORS`.
* *
* *
*/ */

View File

@ -16,8 +16,15 @@ import {COMMON_PIPES} from './pipes/index';
// Note: This does not contain the location providers, // Note: This does not contain the location providers,
// as they need some platform specific implementations to work. // as they need some platform specific implementations to work.
/** /**
* The module that includes all the basic Angular directives like {@link NgIf}, {@link NgForOf}, ... * Exports all the basic Angular directives and pipes,
* such as `NgIf`, `NgForOf`, `DecimalPipe`, and so on.
* Re-exported by `BrowserModule`, which is included automatically in the root
* `AppModule` when you create a new app with the CLI `new` command.
* *
* * The `providers` options configure the NgModule's injector to provide
* localization dependencies to members.
* * The `exports` options make the declared directives and pipes available for import
* by other NgModules.
* *
*/ */
@NgModule({ @NgModule({

View File

@ -32,6 +32,10 @@ export function _localeFactory(locale?: string): string {
return locale || 'en-US'; return locale || 'en-US';
} }
/**
* A built-in [dependency injection token](guide/glossary#di-token)
* that is used to configure the root injector for bootstrapping.
*/
export const APPLICATION_MODULE_PROVIDERS: StaticProvider[] = [ export const APPLICATION_MODULE_PROVIDERS: StaticProvider[] = [
{ {
provide: ApplicationRef, provide: ApplicationRef,
@ -56,8 +60,12 @@ export const APPLICATION_MODULE_PROVIDERS: StaticProvider[] = [
]; ];
/** /**
* This module includes the providers of @angular/core that are needed * Configures the root injector for an app with
* to bootstrap components via `ApplicationRef`. * providers of `@angular/core` dependencies that `ApplicationRef` needs
* to bootstrap components.
*
* Re-exported by `BrowserModule`, which is included automatically in the root
* `AppModule` when you create a new app with the CLI `new` command.
* *
* @experimental * @experimental
*/ */

View File

@ -13,8 +13,9 @@ import {RadioControlRegistry} from './directives/radio_control_value_accessor';
import {FormBuilder} from './form_builder'; import {FormBuilder} from './form_builder';
/** /**
* @description * Exports the required providers and directives for template-driven forms,
* An `NgModule` that registers the directives and providers for template-driven forms. * making them available for import by NgModules that import this module.
* @see [Forms](guide/forms)
* *
* @see [Forms Guide](/guide/forms) * @see [Forms Guide](/guide/forms)
*/ */
@ -44,8 +45,9 @@ export class FormsModule {
} }
/** /**
* @description * Exports the required infrastructure and directives for reactive forms,
* An `NgModule` that registers the directives and providers for reactive forms. * making them available for import by NgModules that import this module.
* @see [Forms](guide/reactive-forms)
* *
* @see [Reactive Forms Guide](/guide/reactive-forms) * @see [Reactive Forms Guide](/guide/reactive-forms)
* *

View File

@ -11,7 +11,9 @@ import {BrowserModule} from '@angular/platform-browser';
import {BROWSER_ANIMATIONS_PROVIDERS, BROWSER_NOOP_ANIMATIONS_PROVIDERS} from './providers'; import {BROWSER_ANIMATIONS_PROVIDERS, BROWSER_NOOP_ANIMATIONS_PROVIDERS} from './providers';
/** /**
* @experimental Animation support is experimental. * Exports `BrowserModule` with additional [dependency-injection providers](guide/glossary#provider)
* for use with animations. See [Animations](guide/animations).
* @experimental
*/ */
@NgModule({ @NgModule({
exports: [BrowserModule], exports: [BrowserModule],
@ -21,7 +23,8 @@ export class BrowserAnimationsModule {
} }
/** /**
* @experimental Animation support is experimental. * A null player that must be imported to allow disabling of animations.
* @experimental
*/ */
@NgModule({ @NgModule({
exports: [BrowserModule], exports: [BrowserModule],

View File

@ -89,7 +89,11 @@ export const BROWSER_MODULE_PROVIDERS: StaticProvider[] = [
]; ];
/** /**
* The ng module for the browser. * Exports required infrastructure for all Angular apps.
* Included by defaults in all Angular apps created with the CLI
* `new` command.
* Re-exports `CommonModule` and `ApplicationModule`, making their
* exports and providers available to all apps.
* *
* *
*/ */
@ -103,9 +107,12 @@ export class BrowserModule {
} }
/** /**
* Configures a browser-based application to transition from a server-rendered app, if * Configures a browser-based app to transition from a server-rendered app, if
* one is present on the page. The specified parameters must include an application id, * one is present on the page.
* which must match between the client and server applications. *
* @param params An object containing an identifier for the app to transition.
* The ID must match between the client and server versions of the app.
* @returns The reconfigured `BrowserModule` to import into the app's root `AppModule`.
* *
* @experimental * @experimental
*/ */