mirror of https://github.com/Chocobozzz/PeerTube
9 lines
229 B
TypeScript
9 lines
229 B
TypeScript
|
import { VideoPlaylistPrivacy } from '@shared/models'
|
||
|
|
||
|
export interface PluginPlaylistPrivacyManager {
|
||
|
// PUBLIC = 1,
|
||
|
// UNLISTED = 2,
|
||
|
// PRIVATE = 3
|
||
|
deletePlaylistPrivacy: (privacyKey: VideoPlaylistPrivacy) => boolean
|
||
|
}
|