2020-06-23 07:10:17 -05:00
|
|
|
import { VideoPlaylistPrivacy } from '../videos/playlist/video-playlist-privacy.model'
|
2020-04-20 08:32:11 -05:00
|
|
|
|
|
|
|
export interface PluginPlaylistPrivacyManager {
|
|
|
|
// PUBLIC = 1,
|
|
|
|
// UNLISTED = 2,
|
|
|
|
// PRIVATE = 3
|
|
|
|
deletePlaylistPrivacy: (privacyKey: VideoPlaylistPrivacy) => boolean
|
|
|
|
}
|