]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/share/holds/holds.module.ts
LP 2061136 follow-up: ng lint --fix
[working/Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / share / holds / holds.module.ts
1 import {NgModule} from '@angular/core';
2 import {StaffCommonModule} from '@eg/staff/common.module';
3 import {HoldingsModule} from '@eg/staff/share/holdings/holdings.module';
4 import {HoldsService} from './holds.service';
5 import {HoldsGridComponent} from './grid.component';
6 import {HoldDetailComponent} from './detail.component';
7 import {HoldManageComponent} from './manage.component';
8 import {HoldRetargetDialogComponent} from './retarget-dialog.component';
9 import {HoldTransferDialogComponent} from './transfer-dialog.component';
10 import {HoldCancelDialogComponent} from './cancel-dialog.component';
11 import {HoldManageDialogComponent} from './manage-dialog.component';
12 import {HoldNoteDialogComponent} from './note-dialog.component';
13 import {HoldNotifyDialogComponent} from './notify-dialog.component';
14 import {HoldCopyLocationsDialogComponent} from './copy-locations-dialog.component';
15 import {WorkLogModule} from '@eg/staff/share/worklog/worklog.module';
16
17 @NgModule({
18     declarations: [
19         HoldsGridComponent,
20         HoldDetailComponent,
21         HoldManageComponent,
22         HoldRetargetDialogComponent,
23         HoldTransferDialogComponent,
24         HoldCancelDialogComponent,
25         HoldManageDialogComponent,
26         HoldNoteDialogComponent,
27         HoldNotifyDialogComponent,
28         HoldCopyLocationsDialogComponent
29     ],
30     imports: [
31         StaffCommonModule,
32         HoldingsModule,
33         WorkLogModule
34     ],
35     exports: [
36         HoldsGridComponent,
37         HoldDetailComponent,
38         HoldManageComponent,
39         HoldRetargetDialogComponent,
40         HoldTransferDialogComponent,
41         HoldCancelDialogComponent,
42         HoldManageDialogComponent,
43         HoldCopyLocationsDialogComponent
44     ],
45     providers: [
46         HoldsService
47     ]
48 })
49
50 export class HoldsModule {}