2021-05-11 06:04:47 -04:00
|
|
|
import { VideoPlaylistPrivacy } from '../../../videos/playlist/video-playlist-privacy.model'
|
2021-07-28 04:46:32 -04:00
|
|
|
import { ConstantManager } from '../plugin-constant-manager.model'
|
2020-04-20 09:32:11 -04:00
|
|
|
|
2021-06-29 10:02:05 -04:00
|
|
|
export interface PluginPlaylistPrivacyManager extends ConstantManager<VideoPlaylistPrivacy> {
|
|
|
|
/**
|
|
|
|
* PUBLIC = 1,
|
|
|
|
* UNLISTED = 2,
|
|
|
|
* PRIVATE = 3
|
|
|
|
* @deprecated use `deleteConstant` instead
|
|
|
|
*/
|
2020-04-20 09:32:11 -04:00
|
|
|
deletePlaylistPrivacy: (privacyKey: VideoPlaylistPrivacy) => boolean
|
|
|
|
}
|