Support audio upload in client
[oweals/peertube.git] / client / src / app / +my-account / my-account-video-playlists / my-account-video-playlist-edit.ts
1 import { FormReactive } from '@app/shared'
2 import { VideoPlaylist } from '@shared/models/videos/playlist/video-playlist.model'
3
4 export abstract class MyAccountVideoPlaylistEdit extends FormReactive {
5   // Declare it here to avoid errors in create template
6   videoPlaylistToUpdate: VideoPlaylist
7   userVideoChannels: { id: number, label: string }[] = []
8
9   abstract isCreation (): boolean
10   abstract getFormButtonTitle (): string
11 }