96061a300be8a9e996a925182bab970dbcbdedee
[oweals/peertube.git] / client / src / app / videos / +video-edit / shared / video-edit.module.ts
1 import { TagInputModule } from 'ngx-chips'
2 import { CalendarModule } from 'primeng/calendar'
3 import { NgModule } from '@angular/core'
4 import { SharedFormModule } from '@app/shared/shared-forms'
5 import { SharedGlobalIconModule } from '@app/shared/shared-icons'
6 import { SharedMainModule } from '@app/shared/shared-main'
7 import { VideoCaptionAddModalComponent } from './video-caption-add-modal.component'
8 import { VideoEditComponent } from './video-edit.component'
9
10 @NgModule({
11   imports: [
12     TagInputModule,
13     CalendarModule,
14
15     SharedMainModule,
16     SharedFormModule,
17     SharedGlobalIconModule
18   ],
19
20   declarations: [
21     VideoEditComponent,
22     VideoCaptionAddModalComponent
23   ],
24
25   exports: [
26     TagInputModule,
27     CalendarModule,
28
29     SharedMainModule,
30     SharedFormModule,
31     SharedGlobalIconModule,
32
33     VideoEditComponent
34   ],
35
36   providers: []
37 })
38 export class VideoEditModule { }