]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - 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
1import { TagInputModule } from 'ngx-chips'
2import { CalendarModule } from 'primeng/calendar'
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'
7import { VideoCaptionAddModalComponent } from './video-caption-add-modal.component'
8import { 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})
38export class VideoEditModule { }