1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-04 18:29:27 +02:00
Peertube/shared/models/plugins/plugin-playlist-privacy-manager.model.ts
2020-04-20 15:42:27 +02:00

8 lines
229 B
TypeScript

import { VideoPlaylistPrivacy } from '@shared/models'
export interface PluginPlaylistPrivacyManager {
// PUBLIC = 1,
// UNLISTED = 2,
// PRIVATE = 3
deletePlaylistPrivacy: (privacyKey: VideoPlaylistPrivacy) => boolean
}