]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+videos/+video-edit/shared/video-edit.module.ts
Use pointer for search suggestions
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / +video-edit / shared / video-edit.module.ts
CommitLineData
66b16caf 1import { TagInputModule } from 'ngx-chips'
f77eb73b 2import { CalendarModule } from 'primeng/calendar'
67ed6552
C
3import { NgModule } from '@angular/core'
4import { SharedFormModule } from '@app/shared/shared-forms'
5import { SharedGlobalIconModule } from '@app/shared/shared-icons'
6import { SharedMainModule } from '@app/shared/shared-main'
40e87e9e 7import { VideoCaptionAddModalComponent } from './video-caption-add-modal.component'
67ed6552 8import { VideoEditComponent } from './video-edit.component'
2de96f4d
C
9
10@NgModule({
11 imports: [
12 TagInputModule,
bbe0f064 13 CalendarModule,
2de96f4d 14
67ed6552
C
15 SharedMainModule,
16 SharedFormModule,
17 SharedGlobalIconModule
2de96f4d
C
18 ],
19
20 declarations: [
6de36768 21 VideoEditComponent,
40e87e9e 22 VideoCaptionAddModalComponent
2de96f4d
C
23 ],
24
25 exports: [
26 TagInputModule,
bbe0f064 27 CalendarModule,
2de96f4d 28
67ed6552
C
29 SharedMainModule,
30 SharedFormModule,
31 SharedGlobalIconModule,
32
ff249f49 33 VideoEditComponent
2de96f4d
C
34 ],
35
66b16caf 36 providers: []
2de96f4d
C
37})
38export class VideoEditModule { }