mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-02-16 18:25:09 -06:00
9 lines
262 B
TypeScript
9 lines
262 B
TypeScript
import { VideoPlaylistPrivacy } from '../videos/playlist/video-playlist-privacy.model'
|
|
|
|
export interface PluginPlaylistPrivacyManager {
|
|
// PUBLIC = 1,
|
|
// UNLISTED = 2,
|
|
// PRIVATE = 3
|
|
deletePlaylistPrivacy: (privacyKey: VideoPlaylistPrivacy) => boolean
|
|
}
|