common_module.js
1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/**
* @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 { NgModule } from '@angular/core';
import { COMMON_DIRECTIVES } from './directives/index';
import { NgLocaleLocalization, NgLocalization } from './localization';
import { COMMON_PIPES } from './pipes/index';
/**
* The module that includes all the basic Angular directives like {\@link NgIf}, {\@link NgFor}, ...
*
* \@stable
*/
export var CommonModule = (function () {
function CommonModule() {
}
CommonModule.decorators = [
{ type: NgModule, args: [{
declarations: [COMMON_DIRECTIVES, COMMON_PIPES],
exports: [COMMON_DIRECTIVES, COMMON_PIPES],
providers: [
{ provide: NgLocalization, useClass: NgLocaleLocalization },
],
},] },
];
/** @nocollapse */
CommonModule.ctorParameters = function () { return []; };
return CommonModule;
}());
function CommonModule_tsickle_Closure_declarations() {
/** @type {?} */
CommonModule.decorators;
/**
* @nocollapse
* @type {?}
*/
CommonModule.ctorParameters;
}
//# sourceMappingURL=common_module.js.map