2016-06-23 12:47:54 -04:00
|
|
|
/**
|
|
|
|
* @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
|
|
|
|
*/
|
|
|
|
|
2016-07-18 06:50:31 -04:00
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
import {COMMON_DIRECTIVES} from './src/common_directives';
|
|
|
|
import {COMMON_PIPES} from './src/pipes';
|
|
|
|
|
2016-04-28 20:50:03 -04:00
|
|
|
export * from './src/pipes';
|
|
|
|
export * from './src/directives';
|
2016-06-08 13:44:04 -04:00
|
|
|
export * from './src/forms-deprecated';
|
2016-04-28 20:50:03 -04:00
|
|
|
export * from './src/common_directives';
|
|
|
|
export * from './src/location';
|
2016-07-18 06:50:31 -04:00
|
|
|
export {NgLocalization} from './src/localization';
|
|
|
|
|
|
|
|
// Note: This does not contain the location providers,
|
|
|
|
// as they need some platform specific implementations to work.
|
|
|
|
/**
|
|
|
|
* The module that includes all the basic Angular directives like {@link NgIf}, ${link NgFor}, ...
|
|
|
|
*
|
|
|
|
* @experimental
|
|
|
|
*/
|
|
|
|
@NgModule(
|
|
|
|
{declarations: [COMMON_DIRECTIVES, COMMON_PIPES], exports: [COMMON_DIRECTIVES, COMMON_PIPES]})
|
|
|
|
export class CommonModule {
|
|
|
|
}
|