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
| import { NgModule } from '@angular/core';
| import { CameraDirective } from './directives/camera.directive';
| import { LocalDatePipe } from './pipes/localdate.pipe';
| import { DatePipe } from '@angular/common';
|
| const _PROVIDDERS = [
| DatePipe,
| LocalDatePipe
| ];
|
| const _DECLARATIONS = [
| CameraDirective,
| LocalDatePipe
| ];
|
| @NgModule({
| imports: [],
| exports: [
| ..._DECLARATIONS
| ],
| declarations: [
| ..._DECLARATIONS
| ],
| providers: [
| ..._PROVIDDERS
| ],
| })
| export class KlSharedModule { }
|
|