fix(animations): export BrowserModule as apart of BrowserAnimationsModule (#18263)

PR Close #18263
This commit is contained in:
Matias Niemelä 2017-07-20 14:36:25 -07:00 committed by Miško Hevery
parent 0330fa6b82
commit cbeb197aa5

View File

@ -14,7 +14,7 @@ import {BROWSER_ANIMATIONS_PROVIDERS, BROWSER_NOOP_ANIMATIONS_PROVIDERS} from '.
* @experimental Animation support is experimental. * @experimental Animation support is experimental.
*/ */
@NgModule({ @NgModule({
imports: [BrowserModule], exports: [BrowserModule],
providers: BROWSER_ANIMATIONS_PROVIDERS, providers: BROWSER_ANIMATIONS_PROVIDERS,
}) })
export class BrowserAnimationsModule { export class BrowserAnimationsModule {
@ -24,7 +24,7 @@ export class BrowserAnimationsModule {
* @experimental Animation support is experimental. * @experimental Animation support is experimental.
*/ */
@NgModule({ @NgModule({
imports: [BrowserModule], exports: [BrowserModule],
providers: BROWSER_NOOP_ANIMATIONS_PROVIDERS, providers: BROWSER_NOOP_ANIMATIONS_PROVIDERS,
}) })
export class NoopAnimationsModule { export class NoopAnimationsModule {