]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - 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
1import { NgModule } from '@angular/core'
2import { TagInputModule } from 'ngx-chips'
3import { SharedModule } from '../../../shared/'
4import { VideoEditComponent } from './video-edit.component'
5import { CalendarModule } from 'primeng/components/calendar/calendar'
6import { VideoCaptionAddModalComponent } from './video-caption-add-modal.component'
7
8@NgModule({
9 imports: [
10 TagInputModule,
11 CalendarModule,
12
13 SharedModule
14 ],
15
16 declarations: [
17 VideoEditComponent,
18 VideoCaptionAddModalComponent
19 ],
20
21 exports: [
22 TagInputModule,
23 CalendarModule,
24
25 VideoEditComponent
26 ],
27
28 providers: []
29})
30export class VideoEditModule { }