]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-edit/shared/video-edit.module.ts
Update angular
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-edit / shared / video-edit.module.ts
CommitLineData
2de96f4d 1import { NgModule } from '@angular/core'
66b16caf 2import { TagInputModule } from 'ngx-chips'
e79c6572 3import { SharedModule } from '../../../shared/'
ff249f49 4import { VideoEditComponent } from './video-edit.component'
bbe0f064 5import { CalendarModule } from 'primeng/components/calendar/calendar'
40e87e9e 6import { VideoCaptionAddModalComponent } from './video-caption-add-modal.component'
2de96f4d
C
7
8@NgModule({
9 imports: [
10 TagInputModule,
bbe0f064 11 CalendarModule,
2de96f4d
C
12
13 SharedModule
14 ],
15
16 declarations: [
6de36768 17 VideoEditComponent,
40e87e9e 18 VideoCaptionAddModalComponent
2de96f4d
C
19 ],
20
21 exports: [
22 TagInputModule,
bbe0f064 23 CalendarModule,
2de96f4d 24
ff249f49 25 VideoEditComponent
2de96f4d
C
26 ],
27
66b16caf 28 providers: []
2de96f4d
C
29})
30export class VideoEditModule { }