mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-04 18:29:27 +02:00
8 lines
268 B
TypeScript
8 lines
268 B
TypeScript
import { VideoPlaylistPrivacy } from '../../../videos/playlist/video-playlist-privacy.model'
|
|
|
|
export interface PluginPlaylistPrivacyManager {
|
|
// PUBLIC = 1,
|
|
// UNLISTED = 2,
|
|
// PRIVATE = 3
|
|
deletePlaylistPrivacy: (privacyKey: VideoPlaylistPrivacy) => boolean
|
|
}
|